Skip to content

Commit

Permalink
Version 0.51.1 (#2611)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Aug 17, 2023
1 parent 8f47253 commit f18811c
Show file tree
Hide file tree
Showing 69 changed files with 91 additions and 78 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ body:
# ...
[dependencies.windows]
version = "0.39.0"
version = "0.51.1"
features = [
"Win32_Foundation",
"Win32_UI_WindowsAndMessaging",
Expand Down
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.0.lib)
$Output = [string](& $DumpbinPath /headers crates/targets/$Target/lib/windows.0.48.3.lib)
if($Output -match "Machine\s*: $Magic" -ne $True) {
Write-Error "Import lib check failed for $Target ($Magic)."
Exit 1
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/bindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-bindgen"
version = "0.49.0"
version = "0.51.1"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -17,7 +17,7 @@ default = ["metadata"]
metadata = []

[dependencies]
windows-metadata = { path = "../metadata", version = "0.49.0" }
windows-metadata = { path = "../metadata", version = "0.51.1" }
rayon = "1.7"

[dependencies.syn]
Expand Down
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.51.0"
version = "0.51.1"
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.2"
version = "0.48.3"
path = "../targets"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/core/src/imp/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, dead_code, clippy::all)]
::windows_targets::link!("kernel32.dll" "system" fn CloseHandle(hobject : HANDLE) -> BOOL);
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/core/src/imp/com_bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, dead_code, clippy::all)]
#[inline]
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.51.0"
version = "0.51.1"
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.51.0"
version = "0.51.1"
edition = "2021"
authors = ["Microsoft"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-metadata"
version = "0.49.0"
version = "0.51.1"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/metadata/src/imp/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(non_snake_case, non_upper_case_globals, non_camel_case_types, dead_code, clippy::all)]
pub type CorElementType = u8;
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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
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.2" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.48.3" }

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

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

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

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

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

[target.aarch64-pc-windows-gnullvm.dependencies]
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.2" }
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.48.3" }
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.0")]
#[link(name = "windows.0.48.3")]
extern $abi {
$(#[$doc])?
$(#[link_name=$link_name])?
Expand Down
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.51.0"
version = "0.51.1"
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.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 }
windows-core = { path = "../core", version = "0.51.1" }
windows-targets = { path = "../targets", version = "0.48.3" }
windows-implement = { path = "../implement", version = "0.51.1", optional = true }
windows-interface = { path = "../interface", version = "0.51.1", 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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
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.2"
version = "0.48.3"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/component/src/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/component_client/src/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/readme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies.windows]
version = "0.48"
version = "0.51"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/generic_interfaces.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/module_attributes.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/nested_module.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/nested_struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/params.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/win32_struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/riddle/src/winrt_struct.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_arch.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_arch_dependencies.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_bstr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_calendar.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_constant_types.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_depends.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_enumeration.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_enumerator.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_guid.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_hresult.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_hstring.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_inspectable.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_nested.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_none.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_overloads.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down
2 changes: 1 addition & 1 deletion crates/tests/standalone/src/b_pcstr.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Bindings generated by `windows-bindgen` 0.49.0
// Bindings generated by `windows-bindgen` 0.51.1

#![allow(
non_snake_case,
Expand Down

0 comments on commit f18811c

Please sign in to comment.