diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 0072c88112..45e05415e8 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -83,7 +83,7 @@ body: # ... [dependencies.windows] - version = "0.34.0" + version = "0.35.0" features = [ "alloc", "Win32_Foundation", diff --git a/.github/readme.md b/.github/readme.md index cc3d85bf62..20b5971198 100644 --- a/.github/readme.md +++ b/.github/readme.md @@ -15,7 +15,7 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.34.0" +version = "0.35.0" features = [ "alloc", "Data_Xml_Dom", @@ -63,7 +63,7 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows-sys] -version = "0.34.0" +version = "0.35.0" features = [ "Win32_Foundation", "Win32_Security", diff --git a/crates/libs/bindgen/Cargo.toml b/crates/libs/bindgen/Cargo.toml index 3eea4d7ee8..adcfc5f56d 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/crates/libs/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-bindgen" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" 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.34.0" } -metadata = { package = "windows-metadata", path = "../metadata", version = "0.34.0" } +tokens = { package = "windows-tokens", path = "../tokens", version = "0.35.0" } +metadata = { package = "windows-metadata", path = "../metadata", version = "0.35.0" } diff --git a/crates/libs/implement/Cargo.toml b/crates/libs/implement/Cargo.toml index bdb2239b8c..de7cd67b5f 100644 --- a/crates/libs/implement/Cargo.toml +++ b/crates/libs/implement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-implement" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" @@ -16,4 +16,4 @@ proc-macro = true [dependencies] syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full", "derive"] } -tokens = { package = "windows-tokens", path = "../tokens", version = "0.34.0" } +tokens = { package = "windows-tokens", path = "../tokens", version = "0.35.0" } diff --git a/crates/libs/interface/Cargo.toml b/crates/libs/interface/Cargo.toml index d6bdd49968..246590f72d 100644 --- a/crates/libs/interface/Cargo.toml +++ b/crates/libs/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-interface" -version = "0.34.0" +version = "0.35.0" edition = "2021" authors = ["Microsoft"] license = "MIT OR Apache-2.0" diff --git a/crates/libs/metadata/Cargo.toml b/crates/libs/metadata/Cargo.toml index 2eb5d72579..4bfa4b40d5 100644 --- a/crates/libs/metadata/Cargo.toml +++ b/crates/libs/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-metadata" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index 5641bb5156..354d1e845f 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-sys" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" @@ -16,34 +16,34 @@ targets = [] all-features = true [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [features] default = [] diff --git a/crates/libs/tokens/Cargo.toml b/crates/libs/tokens/Cargo.toml index ea343e93ad..ad80c3d384 100644 --- a/crates/libs/tokens/Cargo.toml +++ b/crates/libs/tokens/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-tokens" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index fbed887a49..96092bbd78 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" @@ -16,38 +16,38 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.34.0", optional = true } -windows-interface = { path = "../interface", version = "0.34.0", optional = true } +windows-implement = { path = "../implement", version = "0.35.0", optional = true } +windows-interface = { path = "../interface", version = "0.35.0", optional = true } [features] default = [] diff --git a/crates/targets/aarch64_msvc/Cargo.toml b/crates/targets/aarch64_msvc/Cargo.toml index 9452789d14..ab744e3535 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.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/targets/i686_gnu/Cargo.toml b/crates/targets/i686_gnu/Cargo.toml index 7401bda77a..c7e8059599 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.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/targets/i686_msvc/Cargo.toml b/crates/targets/i686_msvc/Cargo.toml index ba8d684226..436efebded 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.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" 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 7364e02a28..48539ea75b 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.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" 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 404c07e134..4e315d1528 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.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/crates/tools/bindings/Cargo.toml b/crates/tools/bindings/Cargo.toml index 83a8a7230a..cf74b9d1a7 100644 --- a/crates/tools/bindings/Cargo.toml +++ b/crates/tools/bindings/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } -bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" } +bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.35.0" } diff --git a/crates/tools/gnu/Cargo.toml b/crates/tools/gnu/Cargo.toml index 1f13370534..8803163626 100644 --- a/crates/tools/gnu/Cargo.toml +++ b/crates/tools/gnu/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" } diff --git a/crates/tools/ilrs/Cargo.toml b/crates/tools/ilrs/Cargo.toml index 3793c924ed..dc62c629e2 100644 --- a/crates/tools/ilrs/Cargo.toml +++ b/crates/tools/ilrs/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" } diff --git a/crates/tools/msvc/Cargo.toml b/crates/tools/msvc/Cargo.toml index 6a96ce5c60..52c1585d1e 100644 --- a/crates/tools/msvc/Cargo.toml +++ b/crates/tools/msvc/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" } diff --git a/crates/tools/sys/Cargo.toml b/crates/tools/sys/Cargo.toml index 9960ea7649..28c585e993 100644 --- a/crates/tools/sys/Cargo.toml +++ b/crates/tools/sys/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } -bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" } +bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.35.0" } rayon = "1.5.1" diff --git a/crates/tools/sys/src/main.rs b/crates/tools/sys/src/main.rs index a923a43ad4..d5a0269baa 100644 --- a/crates/tools/sys/src/main.rs +++ b/crates/tools/sys/src/main.rs @@ -25,7 +25,7 @@ fn main() { r#" [package] name = "windows-sys" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" @@ -40,34 +40,34 @@ targets = [] all-features = true [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [features] default = [] diff --git a/crates/tools/windows/Cargo.toml b/crates/tools/windows/Cargo.toml index b89531b4cb..293fd42c9c 100644 --- a/crates/tools/windows/Cargo.toml +++ b/crates/tools/windows/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } -bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" } +bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.35.0" } rayon = "1.5.1" diff --git a/crates/tools/windows/src/main.rs b/crates/tools/windows/src/main.rs index 5286a835fc..fb98053c47 100644 --- a/crates/tools/windows/src/main.rs +++ b/crates/tools/windows/src/main.rs @@ -25,7 +25,7 @@ fn main() { r#" [package] name = "windows" -version = "0.34.0" +version = "0.35.0" authors = ["Microsoft"] edition = "2021" license = "MIT OR Apache-2.0" @@ -40,38 +40,38 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [target.i686-pc-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.i686-uwp-windows-msvc.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" } [target.x86_64-pc-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.x86_64-uwp-windows-msvc.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" } [target.aarch64-pc-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.aarch64-uwp-windows-msvc.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" } [target.i686-pc-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.i686-uwp-windows-gnu.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" } [target.x86_64-pc-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [target.x86_64-uwp-windows-gnu.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" } [dependencies] -windows-implement = { path = "../implement", version = "0.34.0", optional = true } -windows-interface = { path = "../interface", version = "0.34.0", optional = true } +windows-implement = { path = "../implement", version = "0.35.0", optional = true } +windows-interface = { path = "../interface", version = "0.35.0", optional = true } [features] default = [] diff --git a/crates/tools/yml/Cargo.toml b/crates/tools/yml/Cargo.toml index 1b491b7d46..f8bc0a8165 100644 --- a/crates/tools/yml/Cargo.toml +++ b/crates/tools/yml/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" } +metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }