From 1fdca17628e82e4224b5f587f0c7d3073f5f1a41 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Mon, 24 Oct 2022 13:58:32 -0500 Subject: [PATCH 1/3] Version 0.43 --- crates/libs/bindgen/Cargo.toml | 4 ++-- crates/libs/implement/Cargo.toml | 2 +- crates/libs/interface/Cargo.toml | 2 +- crates/libs/metadata/Cargo.toml | 2 +- crates/libs/windows/Cargo.toml | 6 +++--- docs/readme.md | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/crates/libs/bindgen/Cargo.toml b/crates/libs/bindgen/Cargo.toml index fbeebd3b6c..483cd9d6a8 100644 --- a/crates/libs/bindgen/Cargo.toml +++ b/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" @@ -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" } diff --git a/crates/libs/implement/Cargo.toml b/crates/libs/implement/Cargo.toml index e5e65ba244..78614e88c9 100644 --- a/crates/libs/implement/Cargo.toml +++ b/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" diff --git a/crates/libs/interface/Cargo.toml b/crates/libs/interface/Cargo.toml index 0656db119f..8c2c5f20d1 100644 --- a/crates/libs/interface/Cargo.toml +++ b/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" diff --git a/crates/libs/metadata/Cargo.toml b/crates/libs/metadata/Cargo.toml index 14beadbb8b..0ffefba7e3 100644 --- a/crates/libs/metadata/Cargo.toml +++ b/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" diff --git a/crates/libs/windows/Cargo.toml b/crates/libs/windows/Cargo.toml index b7b38d8c7e..7d2140c170 100644 --- a/crates/libs/windows/Cargo.toml +++ b/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" @@ -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 = [] diff --git a/docs/readme.md b/docs/readme.md index bfa0d01e2f..a06b799139 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -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", From 4fd5cc38eca3e8be4adc2c899fd53bf078e74f20 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Mon, 24 Oct 2022 14:14:03 -0500 Subject: [PATCH 2/3] tool --- crates/tools/windows/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/tools/windows/src/main.rs b/crates/tools/windows/src/main.rs index 45facc4c6f..aa3cfb3b22 100644 --- a/crates/tools/windows/src/main.rs +++ b/crates/tools/windows/src/main.rs @@ -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" @@ -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 = [] From e65da065456b27a992b2199dd6dad273980868af Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Mon, 24 Oct 2022 14:45:34 -0500 Subject: [PATCH 3/3] actions/checkout@v3 --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/cross-compile.yml | 2 +- .github/workflows/test.yml | 2 +- crates/tools/yml/src/main.rs | 14 +++++++------- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ae5d586a2..fb27ed2604 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/cross-compile.yml b/.github/workflows/cross-compile.yml index 16a05211bf..c0a76cccf3 100644 --- a/.github/workflows/cross-compile.yml +++ b/.github/workflows/cross-compile.yml @@ -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 }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b50a1dfe2e..1597060145 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/crates/tools/yml/src/main.rs b/crates/tools/yml/src/main.rs index 35bc0efb68..0b7bc58616 100644 --- a/crates/tools/yml/src/main.rs +++ b/crates/tools/yml/src/main.rs @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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