Skip to content

Commit

Permalink
Version 0.35.0 (#1660)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr authored Apr 5, 2022
1 parent d06738c commit d3c2f2c
Show file tree
Hide file tree
Showing 23 changed files with 76 additions and 76 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.34.0"
version = "0.35.0"
features = [
"alloc",
"Win32_Foundation",
Expand Down
8 changes: 4 additions & 4 deletions .github/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows]
version = "0.34.0"
version = "0.35.0"
features = [
"alloc",
"Data_Xml_Dom",
Expand Down Expand Up @@ -43,7 +43,7 @@ fn main() -> Result<()> {
assert!(root.InnerText()? == "hello world");

unsafe {
let event = CreateEventW(std::ptr::null(), true, false, None);
let event = CreateEventW(std::ptr::null(), true, false, None)?;
SetEvent(event).ok()?;
WaitForSingleObject(event, 0);
CloseHandle(event).ok()?;
Expand All @@ -63,7 +63,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-sys]
version = "0.34.0"
version = "0.35.0"
features = [
"Win32_Foundation",
"Win32_Security",
Expand All @@ -81,7 +81,7 @@ use windows_sys::{

fn main() {
unsafe {
let event = CreateEventW(std::ptr::null(), 1, 0, std::ptr::null())?;
let event = CreateEventW(std::ptr::null(), 1, 0, std::ptr::null());
SetEvent(event);
WaitForSingleObject(event, 0);
CloseHandle(event);
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.34.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.35.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.35.0" }
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.35.0" }
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.34.0"
version = "0.35.0"
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" }

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

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

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

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

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

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

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

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

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

[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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" }

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

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

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

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

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

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

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

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

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

[dependencies]
windows-implement = { path = "../implement", version = "0.34.0", optional = true }
windows-interface = { path = "../interface", version = "0.34.0", optional = true }
windows-implement = { path = "../implement", version = "0.35.0", optional = true }
windows-interface = { path = "../interface", version = "0.35.0", 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.34.0"
version = "0.35.0"
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.34.0"
version = "0.35.0"
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.34.0"
version = "0.35.0"
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.34.0"
version = "0.35.0"
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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 = "2021"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.34.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.35.0" }
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 = "2021"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }
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 = "2021"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }
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 = "2021"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }
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 = "2021"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.34.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.35.0" }
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.34.0"
version = "0.35.0"
authors = ["Microsoft"]
edition = "2021"
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.34.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" }
[target.i686-uwp-windows-msvc.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.34.0" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.35.0" }
[target.x86_64-pc-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" }
[target.x86_64-uwp-windows-msvc.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.34.0" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.35.0" }
[target.aarch64-pc-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" }
[target.aarch64-uwp-windows-msvc.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.34.0" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.35.0" }
[target.i686-pc-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" }
[target.i686-uwp-windows-gnu.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.34.0" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.35.0" }
[target.x86_64-pc-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" }
[target.x86_64-uwp-windows-gnu.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.34.0" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.35.0" }
[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 = "2021"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.34.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.34.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.35.0" }
bindgen = { package = "windows-bindgen", path = "../../libs/bindgen", version = "0.35.0" }
rayon = "1.5.1"
Loading

0 comments on commit d3c2f2c

Please sign in to comment.