Skip to content

Commit

Permalink
0.31.0 (#1484)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshuawuyts committed Feb 3, 2022
1 parent 4fc9e3b commit 465f01a
Show file tree
Hide file tree
Showing 20 changed files with 69 additions and 69 deletions.
4 changes: 2 additions & 2 deletions .github/readme.md
Expand Up @@ -15,7 +15,7 @@ Start by adding the following to your Cargo.toml file:

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

```toml
[dependencies.windows-sys]
version = "0.30.0"
version = "0.31.0"
features = [
"Win32_Foundation",
"Win32_Security",
Expand Down
6 changes: 3 additions & 3 deletions crates/libs/bindgen/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "windows-bindgen"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Code gen support for the windows crate"
repository = "https://github.com/microsoft/windows-rs"

[dependencies]
tokens = { package = "windows-tokens", path = "../tokens", version = "0.30.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.30.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.31.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.31.0" }
4 changes: 2 additions & 2 deletions crates/libs/implement/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-implement"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -12,4 +12,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.30.0" }
tokens = { package = "windows-tokens", path = "../tokens", version = "0.31.0" }
2 changes: 1 addition & 1 deletion crates/libs/metadata/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-metadata"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
22 changes: 11 additions & 11 deletions crates/libs/sys/Cargo.toml
@@ -1,7 +1,7 @@

[package]
name = "windows-sys"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -14,34 +14,34 @@ default-target = "x86_64-pc-windows-msvc"
all-features = true

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

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

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

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

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

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

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

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

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

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

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/tokens/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-tokens"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
24 changes: 12 additions & 12 deletions crates/libs/windows/Cargo.toml
@@ -1,7 +1,7 @@

[package]
name = "windows"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -15,37 +15,37 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

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

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

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

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

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

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

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

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

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

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

[dependencies]
windows-implement = { path = "../implement", version = "0.30.0", optional = true }
windows-implement = { path = "../implement", version = "0.31.0", optional = true }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/aarch64_msvc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows_aarch64_msvc"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_gnu/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_gnu"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/targets/i686_msvc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows_i686_msvc"
version = "0.30.0"
version = "0.31.0"
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
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_gnu"
version = "0.30.0"
version = "0.31.0"
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
@@ -1,6 +1,6 @@
[package]
name = "windows_x86_64_msvc"
version = "0.30.0"
version = "0.31.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/tools/bindings/Cargo.toml
Expand Up @@ -5,5 +5,5 @@ edition = "2018"
publish = false

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

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.30.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.31.0" }
2 changes: 1 addition & 1 deletion crates/tools/msvc/Cargo.toml
Expand Up @@ -5,4 +5,4 @@ edition = "2018"
publish = false

[dependencies]
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.30.0" }
metadata = { package = "windows-metadata", path = "../../libs/metadata", version = "0.31.0" }
4 changes: 2 additions & 2 deletions crates/tools/sys/Cargo.toml
Expand Up @@ -5,6 +5,6 @@ edition = "2018"
publish = false

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

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

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

0 comments on commit 465f01a

Please sign in to comment.