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

+2-2
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

+4-4

crates/libs/collections/Cargo.toml

+1-1
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

+2-2
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

+2-2

crates/libs/cppwinrt/Cargo.toml

+1-1
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

+1-1

crates/libs/cppwinrt/src/lib.rs

+1-1
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

+4-1
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

+29

crates/libs/helpers/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
regex = "1.7"
9-
windows-bindgen = { workspace = true }
8+
regex = "1.11"
109
windows-link = { workspace = true }

crates/libs/numerics/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ 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

crates/libs/registry/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-registry"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/registry/readme.md

+1-1

crates/libs/result/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-result"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/result/readme.md

+1-1

crates/libs/strings/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-strings"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/strings/readme.md

+1-1

crates/libs/version/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-version"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/windows/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "windows"
4-
version = "0.59.0"
4+
version = "0.60.0"
55
authors = ["Microsoft"]
66
edition = "2021"
77
rust-version = "1.74"
@@ -27,7 +27,7 @@ targets = []
2727
rustdoc-args = ["--cfg", "docsrs"]
2828

2929
[dependencies.windows-core]
30-
version = "0.59.0"
30+
version = "0.60.0"
3131
path = "../core"
3232
default-features = false
3333

crates/libs/windows/readme.md

+1-1

crates/samples/components/json_validator_winrt/src/bindings.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
1+
// Bindings generated by `windows-bindgen` 0.60.0
22

33
#![allow(
44
non_snake_case,

crates/samples/components/json_validator_winrt_client/src/bindings.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
1+
// Bindings generated by `windows-bindgen` 0.60.0
22

33
#![allow(
44
non_snake_case,

crates/tests/libs/bindgen/src/comment.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
1+
// Bindings generated by `windows-bindgen` 0.60.0
22

33
#![allow(
44
non_snake_case,
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
1+
// Bindings generated by `windows-bindgen` 0.60.0
22

33
windows_link::link!("kernel32.dll" "system" fn GetTickCount() -> u32);

crates/tests/misc/readme/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ workspace = true
4242
[dev-dependencies.windows-strings]
4343
workspace = true
4444

45+
[dev-dependencies.windows-future]
46+
workspace = true
47+
4548
[dev-dependencies.cppwinrt]
4649
workspace = true
4750

crates/tests/misc/readme/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@
1010
#![doc = include_str!("../../../../libs/windows/readme.md")]
1111
#![doc = include_str!("../../../../libs/link/readme.md")]
1212
#![doc = include_str!("../../../../libs/collections/readme.md")]
13+
#![doc = include_str!("../../../../libs/numerics/readme.md")]
14+
#![doc = include_str!("../../../../libs/future/readme.md")]

crates/tests/winrt/collection_interop/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ fn main() {
3737
"Test",
3838
"--implement",
3939
"--flat",
40+
"--no-comment",
4041
"--reference",
4142
"windows_collections,flat,Windows",
4243
]);

crates/tests/winrt/collection_interop/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

crates/tests/winrt/noexcept/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ fn main() {
3737
"Test",
3838
"--implement",
3939
"--flat",
40+
"--no-comment",
4041
]);
4142

4243
let include = std::env::var("OUT_DIR").unwrap();

crates/tests/winrt/noexcept/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

crates/tests/winrt/ref_params/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ fn main() {
3737
"Test",
3838
"--implement",
3939
"--flat",
40+
"--no-comment",
4041
]);
4142

4243
let include = std::env::var("OUT_DIR").unwrap();

crates/tests/winrt/ref_params/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

crates/tests/winrt/reference_custom/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ fn main() {
3333
"IAsyncAction",
3434
"--implement",
3535
"--flat",
36+
"--no-comment",
3637
"--no-deps",
3738
"--reference",
3839
"windows,skip-root,Windows.Foundation.IStringable",

crates/tests/winrt/reference_custom/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

crates/tests/winrt/reference_no_deps/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@ fn main() {
3535
"--implement",
3636
"--flat",
3737
"--no-deps",
38+
"--no-comment",
3839
]);
3940
}

crates/tests/winrt/reference_no_deps/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

crates/tests/winrt/reference_no_windows/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ fn main() {
3131
"IStringable",
3232
"--implement",
3333
"--flat",
34+
"--no-comment",
3435
]);
3536
}

crates/tests/winrt/reference_no_windows/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

crates/tests/winrt/reference_windows/build.rs

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ fn main() {
3030
"Test",
3131
"--implement",
3232
"--flat",
33+
"--no-comment",
3334
"--reference",
3435
"windows",
3536
]);

crates/tests/winrt/reference_windows/src/bindings.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// Bindings generated by `windows-bindgen` 0.59.0
2-
31
#![allow(
42
non_snake_case,
53
non_upper_case_globals,

docs/readme.md

+6-3

0 commit comments

Comments
 (0)