From ae896c59e4d05895cb17d3b2c3c7c56ccac47207 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Fri, 12 Apr 2024 13:06:50 -0500 Subject: [PATCH] Release 0.56.0 (#2989) --- crates/libs/bindgen/Cargo.toml | 4 ++-- crates/libs/bindgen/readme.md | 4 ++-- crates/libs/core/Cargo.toml | 12 ++++++------ crates/libs/core/readme.md | 4 ++-- crates/libs/implement/Cargo.toml | 2 +- crates/libs/interface/Cargo.toml | 2 +- crates/libs/metadata/Cargo.toml | 2 +- crates/libs/metadata/readme.md | 4 ++-- crates/libs/registry/Cargo.toml | 8 ++++---- crates/libs/registry/readme.md | 2 +- crates/libs/result/Cargo.toml | 6 +++--- crates/libs/result/readme.md | 2 +- crates/libs/sys/Cargo.toml | 2 +- crates/libs/sys/readme.md | 6 +++--- crates/libs/sys/src/lib.rs | 2 +- crates/libs/targets/Cargo.toml | 18 +++++++++--------- crates/libs/targets/readme.md | 2 +- crates/libs/version/Cargo.toml | 6 +++--- crates/libs/version/readme.md | 2 +- crates/libs/windows/Cargo.toml | 6 +++--- crates/libs/windows/readme.md | 6 +++--- crates/libs/windows/src/lib.rs | 2 +- .../json_validator_winrt/src/bindings.rs | 2 +- .../src/bindings.rs | 2 +- crates/targets/aarch64_gnullvm/Cargo.toml | 2 +- crates/targets/aarch64_msvc/Cargo.toml | 2 +- crates/targets/i686_gnu/Cargo.toml | 2 +- crates/targets/i686_gnullvm/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/tests/targets/tests/files.rs | 2 +- crates/tools/riddle/Cargo.toml | 4 ++-- crates/tools/riddle/readme.md | 2 +- web/features/.env | 2 +- 36 files changed, 67 insertions(+), 67 deletions(-) diff --git a/crates/libs/bindgen/Cargo.toml b/crates/libs/bindgen/Cargo.toml index 2c0ff8b496..fd890cde97 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/crates/libs/bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-bindgen" -version = "0.55.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.70" @@ -21,7 +21,7 @@ default = ["metadata"] metadata = [] [dependencies] -windows-metadata = { path = "../metadata", version = "0.55" } +windows-metadata = { path = "../metadata", version = "0.56.0" } rayon = "1.7" [dependencies.syn] diff --git a/crates/libs/bindgen/readme.md b/crates/libs/bindgen/readme.md index d45dc9acf6..098ba39b53 100644 --- a/crates/libs/bindgen/readme.md +++ b/crates/libs/bindgen/readme.md @@ -3,7 +3,7 @@ The [windows-bindgen](https://crates.io/crates/windows-bindgen) crate automatically generates Rust bindings from Windows metadata. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.55.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: @@ -13,7 +13,7 @@ Start by adding the following to your Cargo.toml file: version = "0.52" [dev-dependencies.windows-bindgen] -version = "0.55" +version = "0.56" ``` Generates Rust bindings in a build script or test as needed: diff --git a/crates/libs/core/Cargo.toml b/crates/libs/core/Cargo.toml index 8d560e92f9..4877e4ffa5 100644 --- a/crates/libs/core/Cargo.toml +++ b/crates/libs/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-core" -version = "0.55.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.62" @@ -18,17 +18,17 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [dependencies.windows-targets] -version = "0.52" +version = "0.52.5" path = "../targets" [dependencies.windows-result] -version = "0.1" +version = "0.1.1" path = "../result" [dependencies] -windows-implement = { path = "../implement", version = "0.53" } -windows-interface = { path = "../interface", version = "0.53" } +windows-implement = { path = "../implement", version = "0.56.0" } +windows-interface = { path = "../interface", version = "0.56.0" } [dev-dependencies.windows-bindgen] -version = "0.55" +version = "0.56.0" path = "../bindgen" diff --git a/crates/libs/core/readme.md b/crates/libs/core/readme.md index 849d37e755..f313f7d565 100644 --- a/crates/libs/core/readme.md +++ b/crates/libs/core/readme.md @@ -3,14 +3,14 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates.io/crates/windows-sys) crates let you call any Windows API past, present, and future using code generated on the fly directly from the [metadata describing the API](https://github.com/microsoft/windows-rs/tree/master/crates/libs/bindgen/default) and right into your Rust package where you can call them as if they were just another Rust module. The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt) of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic way for Rust developers to call Windows APIs. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.55.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.54" +version = "0.56" features = [ "Data_Xml_Dom", "Win32_Foundation", diff --git a/crates/libs/implement/Cargo.toml b/crates/libs/implement/Cargo.toml index 2a65037c99..12103b3e9f 100644 --- a/crates/libs/implement/Cargo.toml +++ b/crates/libs/implement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-implement" -version = "0.53.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.62" diff --git a/crates/libs/interface/Cargo.toml b/crates/libs/interface/Cargo.toml index 0c6e38d06d..a5785d9a03 100644 --- a/crates/libs/interface/Cargo.toml +++ b/crates/libs/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-interface" -version = "0.53.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.62" diff --git a/crates/libs/metadata/Cargo.toml b/crates/libs/metadata/Cargo.toml index 71e649f72f..10f81f7696 100644 --- a/crates/libs/metadata/Cargo.toml +++ b/crates/libs/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-metadata" -version = "0.55.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.70" diff --git a/crates/libs/metadata/readme.md b/crates/libs/metadata/readme.md index 78768dbdc9..79c85be2b5 100644 --- a/crates/libs/metadata/readme.md +++ b/crates/libs/metadata/readme.md @@ -3,14 +3,14 @@ The [windows-metadata](https://crates.io/crates/windows-metadata) crate provides a fast reader for Windows metadata files based on the ECMA-335 file format. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.55.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows-metadata] -version = "0.55" +version = "0.56" ``` Read metadata as needed: diff --git a/crates/libs/registry/Cargo.toml b/crates/libs/registry/Cargo.toml index 18c89926e1..182b880a90 100644 --- a/crates/libs/registry/Cargo.toml +++ b/crates/libs/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-registry" -version = "0.1.0" +version = "0.1.1" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" @@ -19,13 +19,13 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [dependencies.windows-targets] -version = "0.52" +version = "0.52.5" path = "../targets" [dependencies.windows-result] -version = "0.1" +version = "0.1.1" path = "../result" [dev-dependencies.windows-bindgen] -version = "0.55" +version = "0.56.0" path = "../bindgen" diff --git a/crates/libs/registry/readme.md b/crates/libs/registry/readme.md index 48891d392a..838f8c8021 100644 --- a/crates/libs/registry/readme.md +++ b/crates/libs/registry/readme.md @@ -3,7 +3,7 @@ The [windows-registry](https://crates.io/crates/windows-registry) crate provides simple, safe, and efficient access to the Windows registry. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.53.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: diff --git a/crates/libs/result/Cargo.toml b/crates/libs/result/Cargo.toml index 3e6b30a546..2491f7c5d9 100644 --- a/crates/libs/result/Cargo.toml +++ b/crates/libs/result/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-result" -version = "0.1.0" +version = "0.1.1" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" @@ -19,9 +19,9 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [dependencies.windows-targets] -version = "0.52" +version = "0.52.5" path = "../targets" [dev-dependencies.windows-bindgen] -version = "0.55" +version = "0.56.0" path = "../bindgen" diff --git a/crates/libs/result/readme.md b/crates/libs/result/readme.md index 736cd3a5ff..451f3e69fa 100644 --- a/crates/libs/result/readme.md +++ b/crates/libs/result/readme.md @@ -3,7 +3,7 @@ The [windows-result](https://crates.io/crates/windows-result) crate provides efficient Windows error handling and propagation with support for Win32, COM, and WinRT APIs. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.53.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index f9257d8d31..768513a4a0 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -20,7 +20,7 @@ targets = [] all-features = true [dependencies.windows-targets] -version = "0.52" +version = "0.52.5" path = "../targets" [features] diff --git a/crates/libs/sys/readme.md b/crates/libs/sys/readme.md index 37f8dc410c..77b745177a 100644 --- a/crates/libs/sys/readme.md +++ b/crates/libs/sys/readme.md @@ -3,15 +3,15 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates.io/crates/windows-sys) crates let you call any Windows API past, present, and future using code generated on the fly directly from the [metadata describing the API](https://github.com/microsoft/windows-rs/tree/master/crates/libs/bindgen/default) and right into your Rust package where you can call them as if they were just another Rust module. The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt) of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic way for Rust developers to call Windows APIs. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.53.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) -* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.53.0) +* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0) Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.53.0" +version = "0.56.0" features = [ "Data_Xml_Dom", "Win32_Foundation", diff --git a/crates/libs/sys/src/lib.rs b/crates/libs/sys/src/lib.rs index 29ef92194d..8b405e3215 100644 --- a/crates/libs/sys/src/lib.rs +++ b/crates/libs/sys/src/lib.rs @@ -1,7 +1,7 @@ /*! Learn more about Rust for Windows here: -[Feature search](https://microsoft.github.io/windows-rs/features/#/0.53.0) +[Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0) */ #![no_std] diff --git a/crates/libs/targets/Cargo.toml b/crates/libs/targets/Cargo.toml index a5754ea29b..49d06e6d4f 100644 --- a/crates/libs/targets/Cargo.toml +++ b/crates/libs/targets/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows-targets" -version = "0.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" @@ -14,25 +14,25 @@ readme = "readme.md" workspace = true [target.'cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib)))'.dependencies] -windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.52" } +windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.52.5" } [target.'cfg(all(any(target_arch = "x86_64", target_arch = "arm64ec"), target_env = "msvc", not(windows_raw_dylib)))'.dependencies] -windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.52" } +windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.52.5" } [target.'cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies] -windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.52" } +windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.52.5" } [target.'cfg(all(target_arch = "x86", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies] -windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.52" } +windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.52.5" } [target.'cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies] -windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52" } +windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52.5" } [target.i686-pc-windows-gnullvm.dependencies] -windows_i686_gnullvm = { path = "../../targets/i686_gnullvm", version = "0.52" } +windows_i686_gnullvm = { path = "../../targets/i686_gnullvm", version = "0.52.5" } [target.x86_64-pc-windows-gnullvm.dependencies] -windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52" } +windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52.5" } [target.aarch64-pc-windows-gnullvm.dependencies] -windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52" } +windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52.5" } diff --git a/crates/libs/targets/readme.md b/crates/libs/targets/readme.md index 356ef48835..0f0c653df8 100644 --- a/crates/libs/targets/readme.md +++ b/crates/libs/targets/readme.md @@ -3,7 +3,7 @@ The [windows-targets](https://crates.io/crates/windows-targets) crate includes import libs, supports semantic versioning, and optional support for raw-dylib. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.53.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: diff --git a/crates/libs/version/Cargo.toml b/crates/libs/version/Cargo.toml index 25927e3316..1979e892f6 100644 --- a/crates/libs/version/Cargo.toml +++ b/crates/libs/version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-version" -version = "0.1.0" +version = "0.1.1" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" @@ -18,9 +18,9 @@ default-target = "x86_64-pc-windows-msvc" targets = [] [dependencies.windows-targets] -version = "0.52" +version = "0.52.5" path = "../targets" [dev-dependencies.windows-bindgen] -version = "0.55" +version = "0.56.0" path = "../bindgen" diff --git a/crates/libs/version/readme.md b/crates/libs/version/readme.md index e2e8814fa9..89d9df1757 100644 --- a/crates/libs/version/readme.md +++ b/crates/libs/version/readme.md @@ -3,7 +3,7 @@ The [windows-version](https://crates.io/crates/windows-version) crate provides reliable operating system version information without the need for application manifest files. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.53.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by adding the following to your Cargo.toml file: diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index e00c81ee6b..34c867b04a 100644 --- a/crates/libs/windows/Cargo.toml +++ b/crates/libs/windows/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "windows" -version = "0.54.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.62" @@ -22,8 +22,8 @@ targets = [] rustdoc-args = ["--cfg", "docsrs"] [dependencies] -windows-core = { path = "../core", version = "0.55" } -windows-targets = { path = "../targets", version = "0.52" } +windows-core = { path = "../core", version = "0.56.0" } +windows-targets = { path = "../targets", version = "0.52.5" } [features] default = [] diff --git a/crates/libs/windows/readme.md b/crates/libs/windows/readme.md index cf07b3ceef..77b745177a 100644 --- a/crates/libs/windows/readme.md +++ b/crates/libs/windows/readme.md @@ -3,15 +3,15 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates.io/crates/windows-sys) crates let you call any Windows API past, present, and future using code generated on the fly directly from the [metadata describing the API](https://github.com/microsoft/windows-rs/tree/master/crates/libs/bindgen/default) and right into your Rust package where you can call them as if they were just another Rust module. The Rust language projection follows in the tradition established by [C++/WinRT](https://github.com/microsoft/cppwinrt) of building language projections for Windows using standard languages and compilers, providing a natural and idiomatic way for Rust developers to call Windows APIs. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.54.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) -* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.54.0) +* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0) Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.54.0" +version = "0.56.0" features = [ "Data_Xml_Dom", "Win32_Foundation", diff --git a/crates/libs/windows/src/lib.rs b/crates/libs/windows/src/lib.rs index a75f9c3dba..2a72d0dc79 100644 --- a/crates/libs/windows/src/lib.rs +++ b/crates/libs/windows/src/lib.rs @@ -3,7 +3,7 @@ /*! Learn more about Rust for Windows here: -[Feature search](https://microsoft.github.io/windows-rs/features/#/0.54.0) +[Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0) */ #![doc(html_no_source)] diff --git a/crates/samples/components/json_validator_winrt/src/bindings.rs b/crates/samples/components/json_validator_winrt/src/bindings.rs index 34c3e2a38d..370fe00032 100644 --- a/crates/samples/components/json_validator_winrt/src/bindings.rs +++ b/crates/samples/components/json_validator_winrt/src/bindings.rs @@ -1,4 +1,4 @@ -// Bindings generated by `windows-bindgen` 0.55.0 +// Bindings generated by `windows-bindgen` 0.56.0 #![allow( non_snake_case, diff --git a/crates/samples/components/json_validator_winrt_client/src/bindings.rs b/crates/samples/components/json_validator_winrt_client/src/bindings.rs index 586718a65c..fe9025786b 100644 --- a/crates/samples/components/json_validator_winrt_client/src/bindings.rs +++ b/crates/samples/components/json_validator_winrt_client/src/bindings.rs @@ -1,4 +1,4 @@ -// Bindings generated by `windows-bindgen` 0.55.0 +// Bindings generated by `windows-bindgen` 0.56.0 #![allow( non_snake_case, diff --git a/crates/targets/aarch64_gnullvm/Cargo.toml b/crates/targets/aarch64_gnullvm/Cargo.toml index fd08629a5b..5206853aa6 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/aarch64_msvc/Cargo.toml b/crates/targets/aarch64_msvc/Cargo.toml index 0c24fc79f7..e0ac398ef1 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/i686_gnu/Cargo.toml b/crates/targets/i686_gnu/Cargo.toml index a2c0eb92f4..1766b85367 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/i686_gnullvm/Cargo.toml b/crates/targets/i686_gnullvm/Cargo.toml index 4f1609140c..16034ca58a 100644 --- a/crates/targets/i686_gnullvm/Cargo.toml +++ b/crates/targets/i686_gnullvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows_i686_gnullvm" -version = "0.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/i686_msvc/Cargo.toml b/crates/targets/i686_msvc/Cargo.toml index 29c908b245..75b19ecef4 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/x86_64_gnu/Cargo.toml b/crates/targets/x86_64_gnu/Cargo.toml index e051aeda54..9fe61994d2 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/x86_64_gnullvm/Cargo.toml b/crates/targets/x86_64_gnullvm/Cargo.toml index ec34be93d4..bb8211dfe1 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/targets/x86_64_msvc/Cargo.toml b/crates/targets/x86_64_msvc/Cargo.toml index 84dcfe8954..17f4572bf7 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.52.4" +version = "0.52.5" authors = ["Microsoft"] edition = "2021" rust-version = "1.56" diff --git a/crates/tests/targets/tests/files.rs b/crates/tests/targets/tests/files.rs index a5a6598ef7..af08353cc4 100644 --- a/crates/tests/targets/tests/files.rs +++ b/crates/tests/targets/tests/files.rs @@ -5,7 +5,7 @@ fn test() { let targets = tool_lib::crates("../../targets"); assert_eq!(8, targets.len()); - assert!(targets.iter().all(|(_, version)| version == "0.52.4")); + assert!(targets.iter().all(|(_, version)| version == "0.52.5")); // The lib names can't change for minor (semver) updates as that breaks linker search. // https://github.com/microsoft/windows-rs/issues/2869 diff --git a/crates/tools/riddle/Cargo.toml b/crates/tools/riddle/Cargo.toml index f33bd309e3..750d0307dc 100644 --- a/crates/tools/riddle/Cargo.toml +++ b/crates/tools/riddle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "riddle" -version = "0.3.0" +version = "0.56.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" @@ -11,5 +11,5 @@ readme = "readme.md" [dependencies.windows-bindgen] path = "../../libs/bindgen" -version = "0.55" +version = "0.56.0" default-features = false diff --git a/crates/tools/riddle/readme.md b/crates/tools/riddle/readme.md index 07cc14075a..38f29fe72e 100644 --- a/crates/tools/riddle/readme.md +++ b/crates/tools/riddle/readme.md @@ -3,7 +3,7 @@ The [riddle](https://crates.io/crates/riddle) tool automatically generates Rust bindings from Windows metadata. * [Getting started](https://kennykerr.ca/rust-getting-started/) -* [Samples](https://github.com/microsoft/windows-rs/tree/0.53.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) Start by installing `riddle`: diff --git a/web/features/.env b/web/features/.env index 2bc4a93dbd..4d41ef92d8 100644 --- a/web/features/.env +++ b/web/features/.env @@ -1,2 +1,2 @@ BROWSER=none -REACT_APP_BRANCHES=0.54.0,0.53.0,master +REACT_APP_BRANCHES=0.56.0,0.54.0,0.53.0,master