Skip to content

Commit

Permalink
Version 0.51.0 (#2605)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Aug 14, 2023
1 parent f0c7eda commit 78a0dbe
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows-core"
version = "0.50.0"
version = "0.51.0"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.48.1"
version = "0.48.2"
path = "../targets"

[features]
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.48.0"
version = "0.51.0"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
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.48.0"
version = "0.51.0"
edition = "2021"
authors = ["Microsoft"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ targets = []
all-features = true

[dependencies.windows-targets]
version = "0.48.1"
version = "0.48.2"
path = "../targets"

[features]
Expand Down
16 changes: 8 additions & 8 deletions crates/libs/targets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows-targets"
version = "0.48.1"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -10,22 +10,22 @@ repository = "https://github.com/microsoft/windows-rs"
readme = "../../../docs/readme.md"

[target.'cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.48.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.48.2" }

[target.'cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.48.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.48.2" }

[target.'cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.48.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.48.2" }

[target.'cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib)))'.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.48.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.48.2" }

[target.'cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.48.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.48.2" }

[target.x86_64-pc-windows-gnullvm.dependencies]
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.48.0" }
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.48.2" }

[target.aarch64-pc-windows-gnullvm.dependencies]
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.0" }
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.2" }
10 changes: 5 additions & 5 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.48.0"
version = "0.51.0"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -18,10 +18,10 @@ targets = []
rustc-args = ["--cfg", "docsrs"]

[dependencies]
windows-core = { path = "../core", version = "0.50.0" }
windows-targets = { path = "../targets", version = "0.48.1" }
windows-implement = { path = "../implement", version = "0.48.0", optional = true }
windows-interface = { path = "../interface", version = "0.48.0", optional = true }
windows-core = { path = "../core", version = "0.51.0" }
windows-targets = { path = "../targets", version = "0.48.2" }
windows-implement = { path = "../implement", version = "0.51.0", optional = true }
windows-interface = { path = "../interface", version = "0.51.0", optional = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/aarch64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/aarch64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_aarch64_msvc"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_gnu"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_msvc"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/x86_64_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_gnu"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/x86_64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/x86_64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_msvc"
version = "0.48.0"
version = "0.48.2"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 78a0dbe

Please sign in to comment.