From 308e08ec259027ebbef11b8ef838923626bf821e Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Tue, 30 Jul 2024 08:19:49 -0700 Subject: [PATCH] Release 0.59.0 (#3182) --- crates/libs/core/readme.md | 4 +--- crates/libs/sys/Cargo.toml | 2 +- crates/libs/sys/readme.md | 10 ++++------ crates/libs/sys/src/lib.rs | 2 +- crates/libs/windows/readme.md | 6 ++---- web/features/.env | 2 +- 6 files changed, 10 insertions(+), 16 deletions(-) diff --git a/crates/libs/core/readme.md b/crates/libs/core/readme.md index 99e261b036..060034beba 100644 --- a/crates/libs/core/readme.md +++ b/crates/libs/core/readme.md @@ -13,7 +13,6 @@ Start by adding the following to your Cargo.toml file: version = "0.58" features = [ "Data_Xml_Dom", - "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", @@ -58,9 +57,8 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows-sys] -version = "0.52" +version = "0.59" features = [ - "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", diff --git a/crates/libs/sys/Cargo.toml b/crates/libs/sys/Cargo.toml index 879020518e..1d2e422bb6 100644 --- a/crates/libs/sys/Cargo.toml +++ b/crates/libs/sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "windows-sys" -version = "0.52.0" +version = "0.59.0" authors = ["Microsoft"] edition = "2021" rust-version = "1.60" diff --git a/crates/libs/sys/readme.md b/crates/libs/sys/readme.md index 552095dd07..7a1e893961 100644 --- a/crates/libs/sys/readme.md +++ b/crates/libs/sys/readme.md @@ -3,18 +3,17 @@ 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.58.0/crates/samples) +* [Samples](https://github.com/microsoft/windows-rs/tree/0.59.0/crates/samples) * [Releases](https://github.com/microsoft/windows-rs/releases) -* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.58.0) +* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.59.0) Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.58.0" +version = "0.58" features = [ "Data_Xml_Dom", - "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", @@ -59,9 +58,8 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows-sys] -version = "0.52" +version = "0.59" features = [ - "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", diff --git a/crates/libs/sys/src/lib.rs b/crates/libs/sys/src/lib.rs index 1323f69879..396dd24e1b 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.58.0) +[Feature search](https://microsoft.github.io/windows-rs/features/#/0.59.0) */ #![no_std] diff --git a/crates/libs/windows/readme.md b/crates/libs/windows/readme.md index 552095dd07..c61e93cbc9 100644 --- a/crates/libs/windows/readme.md +++ b/crates/libs/windows/readme.md @@ -11,10 +11,9 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows] -version = "0.58.0" +version = "0.58" features = [ "Data_Xml_Dom", - "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", @@ -59,9 +58,8 @@ Start by adding the following to your Cargo.toml file: ```toml [dependencies.windows-sys] -version = "0.52" +version = "0.59" features = [ - "Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging", diff --git a/web/features/.env b/web/features/.env index 859f95e2c4..8acbc00599 100644 --- a/web/features/.env +++ b/web/features/.env @@ -1,2 +1,2 @@ BROWSER=none -REACT_APP_BRANCHES=0.58.0,0.57.0,0.56.0,0.54.0,0.53.0,master +REACT_APP_BRANCHES=0.59.0,0.58.0,0.57.0,0.56.0,0.54.0,0.53.0,master