Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.43 #2117

Merged
merged 3 commits into from Oct 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run cargo fmt
run: cargo fmt --all -- --check

Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run cargo doc
run: cargo doc --no-deps -p windows

Expand All @@ -36,7 +36,7 @@ jobs:
generator: [windows, sys, yml]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run tool_${{ matrix.generator }}
run: cargo run -p tool_${{ matrix.generator }}
- name: Compare
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run cargo check
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run cargo check
Expand All @@ -82,7 +82,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update nightly && rustup default nightly-x86_64-pc-windows-msvc
- name: Install clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-compile.yml
Expand Up @@ -33,7 +33,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Add toolchain target
run: rustup target add ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update ${{ matrix.version }} && rustup default ${{ matrix.version }}-${{ matrix.target }}
- name: Add toolchain target
Expand Down
4 changes: 2 additions & 2 deletions crates/libs/bindgen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-bindgen"
version = "0.42.0"
version = "0.43.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -13,4 +13,4 @@ targets = []

[dependencies]
tokens = { package = "windows-tokens", path = "../tokens", version = "0.42.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.42.0" }
metadata = { package = "windows-metadata", path = "../metadata", version = "0.43.0" }
2 changes: 1 addition & 1 deletion crates/libs/implement/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-implement"
version = "0.42.0"
version = "0.43.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/interface/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-interface"
version = "0.42.0"
version = "0.43.0"
edition = "2018"
authors = ["Microsoft"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/metadata/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "windows-metadata"
version = "0.42.0"
version = "0.43.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/libs/windows/Cargo.toml
@@ -1,7 +1,7 @@

[package]
name = "windows"
version = "0.42.0"
version = "0.43.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -52,8 +52,8 @@ windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.42.0" }
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.42.0" }

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

[features]
default = []
Expand Down
6 changes: 3 additions & 3 deletions crates/tools/windows/src/main.rs
Expand Up @@ -39,7 +39,7 @@ fn main() {
r#"
[package]
name = "windows"
version = "0.42.0"
version = "0.43.0"
authors = ["Microsoft"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -90,8 +90,8 @@ windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.42.0" }
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.42.0" }

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

[features]
default = []
Expand Down
14 changes: 7 additions & 7 deletions crates/tools/yml/src/main.rs
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update ${{ matrix.version }} && rustup default ${{ matrix.version }}-${{ matrix.target }}
- name: Add toolchain target
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run cargo fmt
run: cargo fmt --all -- --check

Expand All @@ -175,7 +175,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run cargo doc
run: cargo doc --no-deps -p windows

Expand All @@ -187,7 +187,7 @@ jobs:
generator: [windows, sys, yml]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run tool_${{ matrix.generator }}
run: cargo run -p tool_${{ matrix.generator }}
- name: Compare
Expand All @@ -205,7 +205,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run cargo check
Expand All @@ -222,7 +222,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run cargo check
Expand All @@ -233,7 +233,7 @@ jobs:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Update toolchain
run: rustup update --no-self-update nightly && rustup default nightly-x86_64-pc-windows-msvc
- name: Install clippy
Expand Down
2 changes: 1 addition & 1 deletion docs/readme.md
Expand Up @@ -13,7 +13,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows]
version = "0.42.0"
version = "0.43.0"
features = [
"Data_Xml_Dom",
"Win32_Foundation",
Expand Down