Skip to content

Commit 6f115da

Browse files
authored
Version 0.44.0 (#2279)
1 parent 7c65c07 commit 6f115da

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

crates/libs/bindgen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "windows-bindgen"
3-
version = "0.43.0"
3+
version = "0.44.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -12,5 +12,5 @@ default-target = "x86_64-pc-windows-msvc"
1212
targets = []
1313

1414
[dependencies]
15-
tokens = { package = "windows-tokens", path = "../tokens", version = "0.43.0" }
16-
metadata = { package = "windows-metadata", path = "../metadata", version = "0.43.0" }
15+
tokens = { package = "windows-tokens", path = "../tokens", version = "0.44.0" }
16+
metadata = { package = "windows-metadata", path = "../metadata", version = "0.44.0" }

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.43.0"
3+
version = "0.44.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

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.43.0"
3+
version = "0.44.0"
44
edition = "2018"
55
authors = ["Microsoft"]
66
license = "MIT OR Apache-2.0"

crates/libs/metadata/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-metadata"
3-
version = "0.43.0"
3+
version = "0.44.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/libs/sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "windows-sys"
4-
version = "0.43.0"
4+
version = "0.42.0"
55
authors = ["Microsoft"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"

crates/libs/tokens/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-tokens"
3-
version = "0.43.0"
3+
version = "0.44.0"
44
authors = ["Microsoft"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

crates/libs/windows/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "windows"
4-
version = "0.43.0"
4+
version = "0.44.0"
55
authors = ["Microsoft"]
66
edition = "2018"
77
license = "MIT OR Apache-2.0"
@@ -19,8 +19,8 @@ targets = []
1919
windows-targets = { path = "../targets", version = "0.42.1" }
2020

2121
[dependencies]
22-
windows-implement = { path = "../implement", version = "0.43.0", optional = true }
23-
windows-interface = { path = "../interface", version = "0.43.0", optional = true }
22+
windows-implement = { path = "../implement", version = "0.44.0", optional = true }
23+
windows-interface = { path = "../interface", version = "0.44.0", optional = true }
2424

2525
[features]
2626
default = []

crates/tools/sys/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fn main() {
7373
r#"
7474
[package]
7575
name = "windows-sys"
76-
version = "0.43.0"
76+
version = "0.42.0"
7777
authors = ["Microsoft"]
7878
edition = "2018"
7979
license = "MIT OR Apache-2.0"

crates/tools/windows/src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fn main() {
4242
r#"
4343
[package]
4444
name = "windows"
45-
version = "0.43.0"
45+
version = "0.44.0"
4646
authors = ["Microsoft"]
4747
edition = "2018"
4848
license = "MIT OR Apache-2.0"
@@ -60,8 +60,8 @@ targets = []
6060
windows-targets = { path = "../targets", version = "0.42.1" }
6161
6262
[dependencies]
63-
windows-implement = { path = "../implement", version = "0.43.0", optional = true }
64-
windows-interface = { path = "../interface", version = "0.43.0", optional = true }
63+
windows-implement = { path = "../implement", version = "0.44.0", optional = true }
64+
windows-interface = { path = "../interface", version = "0.44.0", optional = true }
6565
6666
[features]
6767
default = []

docs/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates
77
* [windows](https://microsoft.github.io/windows-docs-rs/)
88
* [windows-sys](https://docs.rs/windows-sys)
99
* [Frequently Asked Questions](https://github.com/microsoft/windows-rs/tree/master/docs/FAQ.md)
10-
* [Samples](https://github.com/microsoft/windows-rs/tree/0.43.0/crates/samples)
10+
* [Samples](https://github.com/microsoft/windows-rs/tree/0.44.0/crates/samples)
1111
* [Changelog](https://github.com/microsoft/windows-rs/releases)
1212

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

1515
```toml
1616
[dependencies.windows]
17-
version = "0.43.0"
17+
version = "0.44.0"
1818
features = [
1919
"Data_Xml_Dom",
2020
"Win32_Foundation",
@@ -62,7 +62,7 @@ Start by adding the following to your Cargo.toml file:
6262

6363
```toml
6464
[dependencies.windows-sys]
65-
version = "0.43.0"
65+
version = "0.42.0"
6666
features = [
6767
"Win32_Foundation",
6868
"Win32_Security",

0 commit comments

Comments
 (0)