Skip to content

Commit

Permalink
Version 0.36.1 (#1723)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored Apr 27, 2022
1 parent 7c9c6b7 commit 9deec0e
Show file tree
Hide file tree
Showing 23 changed files with 74 additions and 74 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 @@ -83,7 +83,7 @@ body:
# ...
[dependencies.windows]
version = "0.36.0"
version = "0.36.1"
features = [
"alloc",
"Win32_Foundation",
Expand Down
4 changes: 2 additions & 2 deletions .github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows]
version = "0.36.0"
version = "0.36.1"
features = [
"alloc",
"Data_Xml_Dom",
Expand Down Expand Up @@ -64,7 +64,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-sys]
version = "0.36.0"
version = "0.36.1"
features = [
"Win32_Foundation",
"Win32_Security",
Expand Down
6 changes: 3 additions & 3 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.36.0"
version = "0.36.1"
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.36.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.36.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.36.1" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.36.1" }
4 changes: 2 additions & 2 deletions 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.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,4 +16,4 @@ proc-macro = true

[dependencies]
syn = { version = "1.0", default-features = false, features = ["parsing", "proc-macro", "printing", "full", "derive"] }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.36.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.36.1" }
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.36.0"
version = "0.36.1"
edition = "2018"
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.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
22 changes: 11 additions & 11 deletions crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "windows-sys"
version = "0.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,34 +16,34 @@ targets = []
all-features = true

[target.i686-pc-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }

[target.i686-uwp-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }

[target.x86_64-pc-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }

[target.x86_64-uwp-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }

[target.aarch64-pc-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }

[target.aarch64-uwp-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }

[target.i686-pc-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }

[target.i686-uwp-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }

[target.x86_64-pc-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }

[target.x86_64-uwp-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/tokens/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "windows-tokens"
version = "0.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
26 changes: 13 additions & 13 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.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,38 +16,38 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[target.i686-pc-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }

[target.i686-uwp-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }

[target.x86_64-pc-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }

[target.x86_64-uwp-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }

[target.aarch64-pc-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }

[target.aarch64-uwp-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }

[target.i686-pc-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }

[target.i686-uwp-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }

[target.x86_64-pc-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }

[target.x86_64-uwp-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }

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

[features]
default = []
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.36.0"
version = "0.36.1"
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.36.0"
version = "0.36.1"
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.36.0"
version = "0.36.1"
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.36.0"
version = "0.36.1"
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.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/tools/bindings/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.1" }
2 changes: 1 addition & 1 deletion crates/tools/gnu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }
2 changes: 1 addition & 1 deletion crates/tools/ilrs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }
2 changes: 1 addition & 1 deletion crates/tools/msvc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }
4 changes: 2 additions & 2 deletions crates/tools/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.1" }
rayon = "1.5.1"
22 changes: 11 additions & 11 deletions crates/tools/sys/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn main() {
r#"
[package]
name = "windows-sys"
version = "0.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -40,34 +40,34 @@ targets = []
all-features = true
[target.i686-pc-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }
[target.i686-uwp-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }
[target.x86_64-pc-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }
[target.x86_64-uwp-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }
[target.aarch64-pc-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }
[target.aarch64-uwp-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }
[target.i686-pc-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }
[target.i686-uwp-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }
[target.x86_64-pc-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }
[target.x86_64-uwp-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }
[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions crates/tools/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.36.1" }
rayon = "1.5.1"
26 changes: 13 additions & 13 deletions crates/tools/windows/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fn main() {
r#"
[package]
name = "windows"
version = "0.36.0"
version = "0.36.1"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -40,38 +40,38 @@ default-target = "x86_64-pc-windows-msvc"
targets = []
[target.i686-pc-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }
[target.i686-uwp-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.36.1" }
[target.x86_64-pc-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }
[target.x86_64-uwp-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.36.1" }
[target.aarch64-pc-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }
[target.aarch64-uwp-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.36.1" }
[target.i686-pc-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }
[target.i686-uwp-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.36.1" }
[target.x86_64-pc-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }
[target.x86_64-uwp-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.36.1" }
[dependencies]
windows-implement = { path = "../implement", version = "0.36.0", optional = true }
windows-interface = { path = "../interface", version = "0.36.0", optional = true }
windows-implement = { path = "../implement", version = "0.36.1", optional = true }
windows-interface = { path = "../interface", version = "0.36.1", optional = true }
[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/tools/yml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.36.1" }

0 comments on commit 9deec0e

Please sign in to comment.