Skip to content

Commit

Permalink
Release 0.59.0 (#3182)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored Jul 30, 2024
1 parent 429666e commit 308e08e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 16 deletions.
4 changes: 1 addition & 3 deletions crates/libs/core/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-sys"
version = "0.52.0"
version = "0.59.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand Down
10 changes: 4 additions & 6 deletions crates/libs/sys/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs>
[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]
Expand Down
6 changes: 2 additions & 4 deletions crates/libs/windows/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion web/features/.env
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 308e08e

Please sign in to comment.