Skip to content

Commit

Permalink
0.48.5 (#2617)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Aug 18, 2023
1 parent cdb90d8 commit b769fa7
Show file tree
Hide file tree
Showing 23 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
foreach($Test in $Tests) {
$Target = $Test.Item1
$Magic = $Test.Item2
$Output = [string](& $DumpbinPath /headers crates/targets/$Target/lib/windows.0.48.4.lib)
$Output = [string](& $DumpbinPath /headers crates/targets/$Target/lib/windows.0.48.5.lib)
if($Output -match "Machine\s*: $Magic" -ne $True) {
Write-Error "Import lib check failed for $Target ($Magic)."
Exit 1
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.48.4"
version = "0.48.5"
path = "../targets"

[features]
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.4"
version = "0.48.5"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.48.5" }

[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.4" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.48.5" }

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

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

[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.4" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.48.5" }

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

[target.aarch64-pc-windows-gnullvm.dependencies]
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.4" }
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.5" }
2 changes: 1 addition & 1 deletion crates/libs/targets/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ macro_rules! link {
#[macro_export]
macro_rules! link {
($library:literal $abi:literal $($link_name:literal)? $(#[$doc:meta])? fn $($function:tt)*) => (
#[link(name = "windows.0.48.4")]
#[link(name = "windows.0.48.5")]
extern $abi {
$(#[$doc])?
$(#[link_name=$link_name])?
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rustc-args = ["--cfg", "docsrs"]

[dependencies]
windows-core = { path = "../core", version = "0.51.1" }
windows-targets = { path = "../targets", version = "0.48.4" }
windows-targets = { path = "../targets", version = "0.48.5" }
windows-implement = { path = "../implement", version = "0.51.1", optional = true }
windows-interface = { path = "../interface", version = "0.51.1", optional = true }

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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
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.4"
version = "0.48.5"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
14 changes: 7 additions & 7 deletions crates/tests/targets/tests/files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

#[test]
fn test() {
std::include_bytes!("../../../targets/aarch64_gnullvm/lib/libwindows.0.48.4.a");
std::include_bytes!("../../../targets/aarch64_msvc/lib/windows.0.48.4.lib");
std::include_bytes!("../../../targets/i686_gnu/lib/libwindows.0.48.4.a");
std::include_bytes!("../../../targets/i686_msvc/lib/windows.0.48.4.lib");
std::include_bytes!("../../../targets/x86_64_gnu/lib/libwindows.0.48.4.a");
std::include_bytes!("../../../targets/x86_64_gnullvm/lib/libwindows.0.48.4.a");
std::include_bytes!("../../../targets/x86_64_msvc/lib/windows.0.48.4.lib");
std::include_bytes!("../../../targets/aarch64_gnullvm/lib/libwindows.0.48.5.a");
std::include_bytes!("../../../targets/aarch64_msvc/lib/windows.0.48.5.lib");
std::include_bytes!("../../../targets/i686_gnu/lib/libwindows.0.48.5.a");
std::include_bytes!("../../../targets/i686_msvc/lib/windows.0.48.5.lib");
std::include_bytes!("../../../targets/x86_64_gnu/lib/libwindows.0.48.5.a");
std::include_bytes!("../../../targets/x86_64_gnullvm/lib/libwindows.0.48.5.a");
std::include_bytes!("../../../targets/x86_64_msvc/lib/windows.0.48.5.lib");
}
2 changes: 1 addition & 1 deletion crates/tools/gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tool_gnu"
version = "0.48.4"
version = "0.48.5"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion crates/tools/msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tool_msvc"
version = "0.48.4"
version = "0.48.5"
edition = "2021"
publish = false

Expand Down

0 comments on commit b769fa7

Please sign in to comment.