Skip to content

Commit

Permalink
0.52.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Feb 28, 2024
1 parent 503dd9f commit 2d750e8
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions crates/libs/targets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

[package]
name = "windows-targets"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import libs for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/aarch64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_aarch64_gnullvm"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/aarch64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_aarch64_msvc"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/i686_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_i686_gnu"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/i686_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_i686_msvc"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/x86_64_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_x86_64_gnu"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/x86_64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_x86_64_gnullvm"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
4 changes: 2 additions & 2 deletions crates/targets/x86_64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "windows_x86_64_msvc"
version = "0.52.3"
version = "0.52.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
rust-version = "1.56"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/targets/tests/files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
fn test() {
let targets = tool_lib::crates("../../targets");
assert_eq!(7, targets.len());
assert!(targets.iter().all(|(_, version)| version == "0.52.3"));
assert!(targets.iter().all(|(_, version)| version == "0.52.4"));

// The lib names can't change for minor (semver) updates as that breaks linker search.
// https://github.com/microsoft/windows-rs/issues/2869
Expand Down

0 comments on commit 2d750e8

Please sign in to comment.