Skip to content

Commit 50e85cb

Browse files
authored
Release 0.62.0 (#3502)
1 parent 2ebb231 commit 50e85cb

File tree

42 files changed

+81
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+81
-49
lines changed

crates/libs/bindgen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-bindgen"
3-
version = "0.59.0"
3+
version = "0.60.0"
44
edition = "2021"
55
rust-version = "1.74"
66
license = "MIT OR Apache-2.0"
@@ -16,4 +16,4 @@ default-target = "x86_64-pc-windows-msvc"
1616
targets = []
1717

1818
[dependencies]
19-
rayon = "1.7"
19+
rayon = "1.10"

crates/libs/bindgen/readme.md

Lines changed: 4 additions & 4 deletions

crates/libs/collections/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ default-target = "x86_64-pc-windows-msvc"
1616
targets = []
1717

1818
[dependencies.windows-core]
19-
version = "0.59.0"
19+
version = "0.60.0"
2020
path = "../core"
2121
default-features = false
2222

crates/libs/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "windows-core"
3-
version = "0.59.0"
3+
version = "0.60.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"
77
license = "MIT OR Apache-2.0"
8-
description = "Rust for Windows"
8+
description = "Core type support for COM and Windows"
99
repository = "https://github.com/microsoft/windows-rs"
1010
readme = "readme.md"
1111
categories = ["os::windows-apis"]

crates/libs/core/readme.md

Lines changed: 2 additions & 2 deletions

crates/libs/cppwinrt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cppwinrt"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/cppwinrt/readme.md

Lines changed: 1 addition & 1 deletion

crates/libs/cppwinrt/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const VERSION: &str = "2.0.240405.15";
55

66
/// Calls the C++/WinRT compiler with the given arguments.
77
///
8-
/// Use `cppwinrt["-help"]` for available options.
8+
/// Use `cppwinrt(["-help"])` for available options.
99
#[track_caller]
1010
pub fn cppwinrt<I, S>(args: I) -> String
1111
where

crates/libs/future/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ default = ["std"]
2020
std = []
2121

2222
[dependencies.windows-core]
23-
version = "0.59.0"
23+
version = "0.60.0"
2424
path = "../core"
2525
default-features = false
2626

2727
[dependencies.windows-link]
2828
version = "0.1.0"
2929
path = "../link"
30+
31+
[dev-dependencies]
32+
windows-result = { path = "../result" }

crates/libs/future/readme.md

Lines changed: 29 additions & 0 deletions

0 commit comments

Comments
 (0)