From b1f53eadde2db7ebd3935bc7c31c335e7952cd5c Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Thu, 22 Sep 2022 12:01:38 -0500 Subject: [PATCH] Version 0.41.0 (#2058) --- crates/libs/bindgen/Cargo.toml | 6 ++--- crates/libs/implement/Cargo.toml | 2 +- crates/libs/interface/Cargo.toml | 2 +- crates/libs/metadata/Cargo.toml | 2 +- crates/libs/sys/Cargo.toml | 26 ++++++++++---------- crates/libs/tokens/Cargo.toml | 2 +- crates/libs/windows/Cargo.toml | 30 +++++++++++------------ crates/targets/aarch64_gnullvm/Cargo.toml | 2 +- crates/targets/aarch64_msvc/Cargo.toml | 2 +- crates/targets/i686_gnu/Cargo.toml | 2 +- crates/targets/i686_msvc/Cargo.toml | 2 +- crates/targets/x86_64_gnu/Cargo.toml | 2 +- crates/targets/x86_64_gnullvm/Cargo.toml | 2 +- crates/targets/x86_64_msvc/Cargo.toml | 2 +- crates/tools/sys/src/main.rs | 26 ++++++++++---------- crates/tools/windows/src/main.rs | 30 +++++++++++------------ docs/readme.md | 2 +- 17 files changed, 71 insertions(+), 71 deletions(-) diff --git a/crates/libs/bindgen/Cargo.toml b/crates/libs/bindgen/Cargo.toml index 018677cbb9..4f39e5406e 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/crates/libs/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-bindgen" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -12,5 +12,5 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [dependencies] -tokens = { package = "windows-tokens", path = "../tokens", version = "0.40.0" } -metadata = { package = "windows-metadata", path = "../metadata", version = "0.40.0" } +tokens = { package = "windows-tokens", path = "../tokens", version = "0.41.0" } +metadata = { package = "windows-metadata", path = "../metadata", version = "0.41.0" } diff --git a/crates/libs/implement/Cargo.toml b/crates/libs/implement/Cargo.toml index 628f119093..c08689b630 100644 --- a/crates/libs/implement/Cargo.toml +++ b/crates/libs/implement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-implement" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/libs/interface/Cargo.toml b/crates/libs/interface/Cargo.toml index 846692968b..142e1901b3 100644 --- a/crates/libs/interface/Cargo.toml +++ b/crates/libs/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-interface" -version = "0.40.0" +version = "0.41.0" edition = "2018" authors = ["Microsoft"] license = "MIT OR Apache-2.0" diff --git a/crates/libs/metadata/Cargo.toml b/crates/libs/metadata/Cargo.toml index f0472df4e9..607bf3bcc8 100644 --- a/crates/libs/metadata/Cargo.toml +++ b/crates/libs/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-metadata" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index 9caf47037c..d05ce66792 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-sys" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -16,40 +16,40 @@ targets = [] all-features = true [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.41.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.41.0" } [features] default = [] diff --git a/crates/libs/tokens/Cargo.toml b/crates/libs/tokens/Cargo.toml index 83d14af924..489b4c944d 100644 --- a/crates/libs/tokens/Cargo.toml +++ b/crates/libs/tokens/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-tokens" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index b5a8207246..c0e6682bd8 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -16,44 +16,44 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.41.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.41.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.40.0", optional = true } -windows-interface = { path = "../interface", version = "0.40.0", optional = true } +windows-implement = { path = "../implement", version = "0.41.0", optional = true } +windows-interface = { path = "../interface", version = "0.41.0", optional = true } [features] default = [] diff --git a/crates/targets/aarch64_gnullvm/Cargo.toml b/crates/targets/aarch64_gnullvm/Cargo.toml index 58486e832d..6227fedeb0 100644 --- a/crates/targets/aarch64_gnullvm/Cargo.toml +++ b/crates/targets/aarch64_gnullvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_aarch64_gnullvm" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/aarch64_msvc/Cargo.toml b/crates/targets/aarch64_msvc/Cargo.toml index d11679dccc..c27ff676d8 100644 --- a/crates/targets/aarch64_msvc/Cargo.toml +++ b/crates/targets/aarch64_msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_aarch64_msvc" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/i686_gnu/Cargo.toml b/crates/targets/i686_gnu/Cargo.toml index 57b85e393a..a315085bed 100644 --- a/crates/targets/i686_gnu/Cargo.toml +++ b/crates/targets/i686_gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_i686_gnu" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/i686_msvc/Cargo.toml b/crates/targets/i686_msvc/Cargo.toml index 0c60cca622..7e4281aaca 100644 --- a/crates/targets/i686_msvc/Cargo.toml +++ b/crates/targets/i686_msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_i686_msvc" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/x86_64_gnu/Cargo.toml b/crates/targets/x86_64_gnu/Cargo.toml index 476da6b846..6fc053954e 100644 --- a/crates/targets/x86_64_gnu/Cargo.toml +++ b/crates/targets/x86_64_gnu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_x86_64_gnu" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/x86_64_gnullvm/Cargo.toml b/crates/targets/x86_64_gnullvm/Cargo.toml index da5abcf321..5bd6a0ee3a 100644 --- a/crates/targets/x86_64_gnullvm/Cargo.toml +++ b/crates/targets/x86_64_gnullvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_x86_64_gnullvm" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/targets/x86_64_msvc/Cargo.toml b/crates/targets/x86_64_msvc/Cargo.toml index 282c59edf3..18d4d8e988 100644 --- a/crates/targets/x86_64_msvc/Cargo.toml +++ b/crates/targets/x86_64_msvc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_x86_64_msvc" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/crates/tools/sys/src/main.rs b/crates/tools/sys/src/main.rs index 5e97c01deb..cc8092d51e 100644 --- a/crates/tools/sys/src/main.rs +++ b/crates/tools/sys/src/main.rs @@ -41,7 +41,7 @@ fn main() { r#" [package] name = "windows-sys" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -56,40 +56,40 @@ targets = [] all-features = true [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.41.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.41.0" } [features] default = [] diff --git a/crates/tools/windows/src/main.rs b/crates/tools/windows/src/main.rs index 18dbc3688d..e5f56637ad 100644 --- a/crates/tools/windows/src/main.rs +++ b/crates/tools/windows/src/main.rs @@ -39,7 +39,7 @@ fn main() { r#" [package] name = "windows" -version = "0.40.0" +version = "0.41.0" authors = ["Microsoft"] edition = "2018" license = "MIT OR Apache-2.0" @@ -54,44 +54,44 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.41.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.41.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.41.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.41.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.41.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.40.0", optional = true } -windows-interface = { path = "../interface", version = "0.40.0", optional = true } +windows-implement = { path = "../implement", version = "0.41.0", optional = true } +windows-interface = { path = "../interface", version = "0.41.0", optional = true } [features] default = [] diff --git a/docs/readme.md b/docs/readme.md index aaad5e4f97..97de776a53 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -15,7 +15,7 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.40.0" +version = "0.41.0" features = [ "Data_Xml_Dom", "Win32_Foundation",