Skip to content

Commit

Permalink
Release 0.57.0 (#3081)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jun 7, 2024
1 parent 21d17ab commit 1594788
Show file tree
Hide file tree
Showing 27 changed files with 42 additions and 42 deletions.
4 changes: 2 additions & 2 deletions crates/libs/bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-bindgen"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -21,7 +21,7 @@ default = ["metadata"]
metadata = []

[dependencies]
windows-metadata = { path = "../metadata", version = "0.56.0" }
windows-metadata = { path = "../metadata", version = "0.57.0" }
rayon = "1.7"

[dependencies.syn]
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/bindgen/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand All @@ -13,7 +13,7 @@ Start by adding the following to your Cargo.toml file:
version = "0.52"

[dev-dependencies.windows-bindgen]
version = "0.56"
version = "0.57"
```

Generates Rust bindings in a build script or test as needed:
Expand Down
8 changes: 4 additions & 4 deletions crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-core"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -26,11 +26,11 @@ version = "0.1.1"
path = "../result"

[dependencies]
windows-implement = { path = "../implement", version = "0.56.0" }
windows-interface = { path = "../interface", version = "0.56.0" }
windows-implement = { path = "../implement", version = "0.57.0" }
windows-interface = { path = "../interface", version = "0.57.0" }

[dev-dependencies.windows-bindgen]
version = "0.56.0"
version = "0.57.0"
path = "../bindgen"

[features]
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/core/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.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.56"
version = "0.57"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/cppwinrt/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The [cppwinrt](https://crates.io/crates/cppwinrt) crate bundles the C++/WinRT compiler for use in Rust.

* [Getting started](https://kennykerr.ca/rust-getting-started/)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/implement/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-implement"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-interface"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-metadata"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/metadata/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.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.56"
version = "0.57"
```

Read metadata as needed:
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-registry"
version = "0.1.1"
version = "0.1.2"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -27,5 +27,5 @@ version = "0.1.1"
path = "../result"

[dev-dependencies.windows-bindgen]
version = "0.56.0"
version = "0.57.0"
path = "../bindgen"
2 changes: 1 addition & 1 deletion crates/libs/registry/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/result/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-result"
version = "0.1.1"
version = "0.1.2"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -27,5 +27,5 @@ version = "0.52.5"
path = "../targets"

[dev-dependencies.windows-bindgen]
version = "0.56.0"
version = "0.57.0"
path = "../bindgen"
2 changes: 1 addition & 1 deletion crates/libs/result/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand Down
6 changes: 3 additions & 3 deletions crates/libs/sys/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)
* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0)
* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.57.0)

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

```toml
[dependencies.windows]
version = "0.56.0"
version = "0.57.0"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
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.56.0)
[Feature search](https://microsoft.github.io/windows-rs/features/#/0.57.0)
*/

#![no_std]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/targets/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ version = "0.52.5"
path = "../targets"

[dev-dependencies.windows-bindgen]
version = "0.56.0"
version = "0.57.0"
path = "../bindgen"
2 changes: 1 addition & 1 deletion crates/libs/version/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by adding the following to your Cargo.toml file:
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.70"
Expand All @@ -22,7 +22,7 @@ targets = []
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
windows-core = { path = "../core", version = "0.56.0" }
windows-core = { path = "../core", version = "0.57.0" }
windows-targets = { path = "../targets", version = "0.52.5" }

[features]
Expand Down
6 changes: 3 additions & 3 deletions crates/libs/windows/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)
* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0)
* [Feature search](https://microsoft.github.io/windows-rs/features/#/0.57.0)

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

```toml
[dependencies.windows]
version = "0.56.0"
version = "0.57.0"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*!
Learn more about Rust for Windows here: <https://github.com/microsoft/windows-rs>
[Feature search](https://microsoft.github.io/windows-rs/features/#/0.56.0)
[Feature search](https://microsoft.github.io/windows-rs/features/#/0.57.0)
*/

#![doc(html_no_source)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.56.0
// Bindings generated by `windows-bindgen` 0.57.0

#![allow(
non_snake_case,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.56.0
// Bindings generated by `windows-bindgen` 0.57.0

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/noexcept/src/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.56.0
// Bindings generated by `windows-bindgen` 0.57.0

#![allow(
non_snake_case,
Expand Down
4 changes: 2 additions & 2 deletions crates/tools/riddle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "riddle"
version = "0.56.0"
version = "0.57.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -11,5 +11,5 @@ readme = "readme.md"

[dependencies.windows-bindgen]
path = "../../libs/bindgen"
version = "0.56.0"
version = "0.57.0"
default-features = false
2 changes: 1 addition & 1 deletion crates/tools/riddle/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.56.0/crates/samples) <!-- link to samples for upcoming release -->
* [Samples](https://github.com/microsoft/windows-rs/tree/0.57.0/crates/samples)
* [Releases](https://github.com/microsoft/windows-rs/releases)

Start by installing `riddle`:
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.56.0,0.54.0,0.53.0,master
REACT_APP_BRANCHES=0.57.0,0.56.0,0.54.0,0.53.0,master

0 comments on commit 1594788

Please sign in to comment.