Skip to content

Commit

Permalink
Version 0.44.0 (#2279)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Jan 12, 2023
1 parent 7c65c07 commit 6f115da
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions crates/libs/bindgen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-bindgen"
version = "0.43.0"
version = "0.44.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -12,5 +12,5 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies]
tokens = { package = "windows-tokens", path = "../tokens", version = "0.43.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.43.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.44.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.44.0" }
2 changes: 1 addition & 1 deletion crates/libs/implement/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-implement"
version = "0.43.0"
version = "0.44.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/interface/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-interface"
version = "0.43.0"
version = "0.44.0"
edition = "2018"
authors = ["Microsoft"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/metadata/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-metadata"
version = "0.43.0"
version = "0.44.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
@@ -1,7 +1,7 @@

[package]
name = "windows-sys"
version = "0.43.0"
version = "0.42.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/tokens/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-tokens"
version = "0.43.0"
version = "0.44.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/libs/windows/Cargo.toml
@@ -1,7 +1,7 @@

[package]
name = "windows"
version = "0.43.0"
version = "0.44.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -19,8 +19,8 @@ targets = []
windows-targets = { path = "../targets", version = "0.42.1" }

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

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/tools/sys/src/main.rs
Expand Up @@ -73,7 +73,7 @@ fn main() {
r#"
[package]
name = "windows-sys"
version = "0.43.0"
version = "0.42.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/tools/windows/src/main.rs
Expand Up @@ -42,7 +42,7 @@ fn main() {
r#"
[package]
name = "windows"
version = "0.43.0"
version = "0.44.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -60,8 +60,8 @@ targets = []
windows-targets = { path = "../targets", version = "0.42.1" }
[dependencies]
windows-implement = { path = "../implement", version = "0.43.0", optional = true }
windows-interface = { path = "../interface", version = "0.43.0", optional = true }
windows-implement = { path = "../implement", version = "0.44.0", optional = true }
windows-interface = { path = "../interface", version = "0.44.0", optional = true }
[features]
default = []
Expand Down
6 changes: 3 additions & 3 deletions docs/readme.md
Expand Up @@ -7,14 +7,14 @@ The [windows](https://crates.io/crates/windows) and [windows-sys](https://crates
* [windows](https://microsoft.github.io/windows-docs-rs/)
* [windows-sys](https://docs.rs/windows-sys)
* [Frequently Asked Questions](https://github.com/microsoft/windows-rs/tree/master/docs/FAQ.md)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.43.0/crates/samples)
* [Samples](https://github.com/microsoft/windows-rs/tree/0.44.0/crates/samples)
* [Changelog](https://github.com/microsoft/windows-rs/releases)

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

```toml
[dependencies.windows]
version = "0.43.0"
version = "0.44.0"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
Expand Down Expand Up @@ -62,7 +62,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-sys]
version = "0.43.0"
version = "0.42.0"
features = [
"Win32_Foundation",
"Win32_Security",
Expand Down

0 comments on commit 6f115da

Please sign in to comment.