diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc945f8..ea35cd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Default features run: cargo test --workspace msrv: - name: "Check MSRV: 1.64.0" + name: "Check MSRV: 1.65.0" runs-on: ubuntu-latest steps: - name: Checkout repository @@ -41,7 +41,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.64.0 # MSRV + toolchain: 1.65.0 # MSRV profile: minimal override: true - uses: Swatinem/rust-cache@v2 @@ -74,7 +74,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.64.0 # MSRV + toolchain: 1.65.0 # MSRV profile: minimal override: true components: clippy @@ -90,4 +90,4 @@ jobs: - uses: actions/checkout@v3 - uses: EmbarkStudios/cargo-deny-action@v1 with: - rust-version: "1.64.0" + rust-version: "1.65.0" diff --git a/Cargo.lock b/Cargo.lock index 2e636e1..e3cfe94 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -131,7 +131,7 @@ dependencies = [ [[package]] name = "cargo-multivers" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index fe4d6fb..261ef3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "cargo-multivers" -version = "0.3.1" +version = "0.3.2" description = "Cargo subcommand to build multiple versions of the same binary, each with a different CPU features set, merged into a single portable optimized binary" edition = "2021" readme = "README.md" license = "MIT OR Apache-2.0" categories = ["hardware-support", "command-line-utilities", "development-tools::cargo-plugins"] keywords = ["performance", "optimization", "cargo", "cpu", "features"] -rust-version = "1.64" +rust-version = "1.65" repository = "https://github.com/ronnychevalier/cargo-multivers" include = [ "/src/*",