Skip to content

Commit 308e08e

Browse files
authored
Release 0.59.0 (#3182)
1 parent 429666e commit 308e08e

File tree

6 files changed

+10
-16
lines changed

6 files changed

+10
-16
lines changed

crates/libs/core/readme.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Start by adding the following to your Cargo.toml file:
1313
version = "0.58"
1414
features = [
1515
"Data_Xml_Dom",
16-
"Win32_Foundation",
1716
"Win32_Security",
1817
"Win32_System_Threading",
1918
"Win32_UI_WindowsAndMessaging",
@@ -58,9 +57,8 @@ Start by adding the following to your Cargo.toml file:
5857

5958
```toml
6059
[dependencies.windows-sys]
61-
version = "0.52"
60+
version = "0.59"
6261
features = [
63-
"Win32_Foundation",
6462
"Win32_Security",
6563
"Win32_System_Threading",
6664
"Win32_UI_WindowsAndMessaging",

crates/libs/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-sys"
3-
version = "0.52.0"
3+
version = "0.59.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.60"

crates/libs/sys/readme.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,17 @@
33
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.
44

55
* [Getting started](https://kennykerr.ca/rust-getting-started/)
6-
* [Samples](https://github.com/microsoft/windows-rs/tree/0.58.0/crates/samples)
6+
* [Samples](https://github.com/microsoft/windows-rs/tree/0.59.0/crates/samples)
77
* [Releases](https://github.com/microsoft/windows-rs/releases)
8-
* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.58.0)
8+
* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.59.0)
99

1010
Start by adding the following to your Cargo.toml file:
1111

1212
```toml
1313
[dependencies.windows]
14-
version = "0.58.0"
14+
version = "0.58"
1515
features = [
1616
"Data_Xml_Dom",
17-
"Win32_Foundation",
1817
"Win32_Security",
1918
"Win32_System_Threading",
2019
"Win32_UI_WindowsAndMessaging",
@@ -59,9 +58,8 @@ Start by adding the following to your Cargo.toml file:
5958

6059
```toml
6160
[dependencies.windows-sys]
62-
version = "0.52"
61+
version = "0.59"
6362
features = [
64-
"Win32_Foundation",
6563
"Win32_Security",
6664
"Win32_System_Threading",
6765
"Win32_UI_WindowsAndMessaging",

crates/libs/sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs>
33
4-
[Feature search](https://microsoft.github.io/windows-rs/features/#/0.58.0)
4+
[Feature search](https://microsoft.github.io/windows-rs/features/#/0.59.0)
55
*/
66

77
#![no_std]

crates/libs/windows/readme.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ Start by adding the following to your Cargo.toml file:
1111

1212
```toml
1313
[dependencies.windows]
14-
version = "0.58.0"
14+
version = "0.58"
1515
features = [
1616
"Data_Xml_Dom",
17-
"Win32_Foundation",
1817
"Win32_Security",
1918
"Win32_System_Threading",
2019
"Win32_UI_WindowsAndMessaging",
@@ -59,9 +58,8 @@ Start by adding the following to your Cargo.toml file:
5958

6059
```toml
6160
[dependencies.windows-sys]
62-
version = "0.52"
61+
version = "0.59"
6362
features = [
64-
"Win32_Foundation",
6563
"Win32_Security",
6664
"Win32_System_Threading",
6765
"Win32_UI_WindowsAndMessaging",

web/features/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
BROWSER=none
2-
REACT_APP_BRANCHES=0.58.0,0.57.0,0.56.0,0.54.0,0.53.0,master
2+
REACT_APP_BRANCHES=0.59.0,0.58.0,0.57.0,0.56.0,0.54.0,0.53.0,master

0 commit comments

Comments
 (0)