From 2e221a29a8817d8a152be6809bbebeddcb0157a7 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Fri, 16 Sep 2022 14:23:12 -0500 Subject: [PATCH] Version 0.40.0 --- 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 731ce3e5a7..018677cbb9 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/crates/libs/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-bindgen" -version = "0.39.0" +version = "0.40.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.39.0" } -metadata = { package = "windows-metadata", path = "../metadata", version = "0.39.0" } +tokens = { package = "windows-tokens", path = "../tokens", version = "0.40.0" } +metadata = { package = "windows-metadata", path = "../metadata", version = "0.40.0" } diff --git a/crates/libs/implement/Cargo.toml b/crates/libs/implement/Cargo.toml index e229d6ecec..628f119093 100644 --- a/crates/libs/implement/Cargo.toml +++ b/crates/libs/implement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-implement" -version = "0.39.0" +version = "0.40.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 0acba35fbe..846692968b 100644 --- a/crates/libs/interface/Cargo.toml +++ b/crates/libs/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-interface" -version = "0.39.0" +version = "0.40.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 e92b3fe437..f0472df4e9 100644 --- a/crates/libs/metadata/Cargo.toml +++ b/crates/libs/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-metadata" -version = "0.39.0" +version = "0.40.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 54f5c8c468..9caf47037c 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-sys" -version = "0.39.0" +version = "0.40.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.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.39.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.39.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } [features] default = [] diff --git a/crates/libs/tokens/Cargo.toml b/crates/libs/tokens/Cargo.toml index 6e6dce8a27..83d14af924 100644 --- a/crates/libs/tokens/Cargo.toml +++ b/crates/libs/tokens/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-tokens" -version = "0.39.0" +version = "0.40.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 01f305f461..9bf6f8f527 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows" -version = "0.39.0" +version = "0.40.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.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.39.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.39.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.39.0", optional = true } -windows-interface = { path = "../interface", version = "0.39.0", optional = true } +windows-implement = { path = "../implement", version = "0.40.0", optional = true } +windows-interface = { path = "../interface", version = "0.40.0", optional = true } [features] default = [] diff --git a/crates/targets/aarch64_gnullvm/Cargo.toml b/crates/targets/aarch64_gnullvm/Cargo.toml index ec8ebcb433..58486e832d 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.39.0" +version = "0.40.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 52b4e6e35d..d11679dccc 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.39.0" +version = "0.40.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 1843996e88..57b85e393a 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.39.0" +version = "0.40.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 067383857c..0c60cca622 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.39.0" +version = "0.40.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 6fa35616c3..476da6b846 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.39.0" +version = "0.40.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 a024fba981..da5abcf321 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.39.0" +version = "0.40.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 3af388e568..282c59edf3 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.39.0" +version = "0.40.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 549c60da0e..5e97c01deb 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.39.0" +version = "0.40.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.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.39.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.39.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } [features] default = [] diff --git a/crates/tools/windows/src/main.rs b/crates/tools/windows/src/main.rs index 13f092f84e..699d051fbb 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.39.0" +version = "0.40.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.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.39.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.40.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.39.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.39.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.40.0" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.39.0" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.40.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.39.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.39.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.40.0" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.39.0" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.40.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.39.0", optional = true } -windows-interface = { path = "../interface", version = "0.39.0", optional = true } +windows-implement = { path = "../implement", version = "0.40.0", optional = true } +windows-interface = { path = "../interface", version = "0.40.0", optional = true } [features] default = [] diff --git a/docs/readme.md b/docs/readme.md index 6f333c2066..aaad5e4f97 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.39.0" +version = "0.40.0" features = [ "Data_Xml_Dom", "Win32_Foundation",