Skip to content

Commit 5888c8c

Browse files
authored
Release 0.61.0 (#3418)
1 parent 9911fee commit 5888c8c

File tree

54 files changed

+97
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+97
-100
lines changed

.github/workflows/lib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
foreach($Test in $Tests) {
8181
$Target = $Test.Item1
8282
$Magic = $Test.Item2
83-
$Output = [string](& $DumpbinPath /headers crates/targets/$Target/lib/windows.0.52.0.lib)
83+
$Output = [string](& $DumpbinPath /headers crates/targets/$Target/lib/windows.0.53.0.lib)
8484
if($Output -match "Machine\s*: $Magic" -ne $True) {
8585
Write-Error "Import lib check failed for $Target ($Magic)."
8686
Exit 1

crates/libs/bindgen/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-bindgen"
3-
version = "0.58.0"
3+
version = "0.59.0"
44
edition = "2021"
55
rust-version = "1.74"
66
license = "MIT OR Apache-2.0"

crates/libs/bindgen/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
The [windows-bindgen](https://crates.io/crates/windows-bindgen) crate automatically generates Rust bindings from Windows metadata.
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/master/crates/samples)
77
* [Releases](https://github.com/microsoft/windows-rs/releases)
88

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

1111
```toml
1212
[dependencies.windows-targets]
13-
version = "0.52"
13+
version = "0.53"
1414

1515
[dev-dependencies.windows-bindgen]
16-
version = "0.58"
16+
version = "0.59"
1717
```
1818

1919
Generate Rust bindings in a build script as follows:

crates/libs/core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-core"
3-
version = "0.58.0"
3+
version = "0.59.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"
@@ -18,22 +18,22 @@ default-target = "x86_64-pc-windows-msvc"
1818
targets = []
1919

2020
[dependencies.windows-targets]
21-
version = "0.52.6"
21+
version = "0.53.0"
2222
path = "../targets"
2323

2424
[dependencies.windows-result]
25-
version = "0.2.0"
25+
version = "0.3.0"
2626
path = "../result"
2727
default-features = false
2828

2929
[dependencies.windows-strings]
30-
version = "0.2.0"
30+
version = "0.3.0"
3131
path = "../strings"
3232
default-features = false
3333

3434
[dependencies]
35-
windows-implement = { path = "../implement", version = "0.58.0" }
36-
windows-interface = { path = "../interface", version = "0.58.0" }
35+
windows-implement = { path = "../implement", version = "0.59.0" }
36+
windows-interface = { path = "../interface", version = "0.59.0" }
3737

3838
[features]
3939
default = ["std"]

crates/libs/core/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Core primitives for the [windows](https://crates.io/crates/windows) crate.
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/master/crates/samples)
77
* [Releases](https://github.com/microsoft/windows-rs/releases)

crates/libs/cppwinrt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cppwinrt"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/cppwinrt/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The [cppwinrt](https://crates.io/crates/cppwinrt) crate bundles the C++/WinRT compiler for use in Rust.
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/master/crates/samples)
77
* [Releases](https://github.com/microsoft/windows-rs/releases)
88

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

crates/libs/implement/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-implement"
3-
version = "0.58.0"
3+
version = "0.59.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/interface/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-interface"
3-
version = "0.58.0"
3+
version = "0.59.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"

crates/libs/registry/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-registry"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.74"
@@ -18,16 +18,16 @@ default-target = "x86_64-pc-windows-msvc"
1818
targets = []
1919

2020
[dependencies.windows-targets]
21-
version = "0.52.6"
21+
version = "0.53.0"
2222
path = "../targets"
2323

2424
[dependencies.windows-result]
25-
version = "0.2.0"
25+
version = "0.3.0"
2626
path = "../result"
2727
default-features = false
2828

2929
[dependencies.windows-strings]
30-
version = "0.2.0"
30+
version = "0.3.0"
3131
path = "../strings"
3232
default-features = false
3333

0 commit comments

Comments
 (0)