From 904b2ad82993ab354bfd88dad6faee7a24b4fb9f Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Mon, 27 May 2024 10:19:03 +0200 Subject: [PATCH] ci: update toolchain to 1.74 and fix draft action --- .github/workflows/build-release-binaries.yml | 2 +- .github/workflows/ci.yml | 4 ++-- .github/workflows/draft-new-release.yml | 4 ++-- CHANGELOG.md | 2 +- README.md | 2 +- rust-toolchain.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-release-binaries.yml b/.github/workflows/build-release-binaries.yml index ecfde0c8..bcd2c806 100644 --- a/.github/workflows/build-release-binaries.yml +++ b/.github/workflows/build-release-binaries.yml @@ -61,7 +61,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.70" + toolchain: "1.74" targets: armv7-unknown-linux-gnueabihf - name: Build ${{ matrix.target }} ${{ matrix.bin }} release binary diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b384ff19..7619754b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.70" + toolchain: "1.74" components: clippy,rustfmt - uses: Swatinem/rust-cache@v2.7.3 @@ -100,7 +100,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: - toolchain: "1.70" + toolchain: "1.74" targets: armv7-unknown-linux-gnueabihf - name: Build binary diff --git a/.github/workflows/draft-new-release.yml b/.github/workflows/draft-new-release.yml index 48fb2d3a..09df0bd7 100644 --- a/.github/workflows/draft-new-release.yml +++ b/.github/workflows/draft-new-release.yml @@ -42,8 +42,8 @@ jobs: - name: Commit changelog and manifest files id: make-commit env: - DPRINT_VERSION: 0.39.1 - RUST_TOOLCHAIN: 1.70 + DPRINT_VERSION: "0.39.1" + RUST_TOOLCHAIN: "1.74" run: | rustup component add rustfmt --toolchain "$RUST_TOOLCHAIN-x86_64-unknown-linux-gnu" curl -fsSL https://dprint.dev/install.sh | sh -s $DPRINT_VERSION diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a299af8..e3e510a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- Minimum Supported Rust Version (MSRV) bumped to 1.70 +- Minimum Supported Rust Version (MSRV) bumped to 1.74 - Lowered default Bitcoin confirmation target for Bob to 1 to make sure Bitcoin transactions get confirmed in time - Added support for starting the CLI (using the `start-daemon` subcommand) as a Daemon that accepts JSON-RPC requests - Update monero-wallet-rpc version to v0.18.3.1 diff --git a/README.md b/README.md index 71a37896..35adc5f0 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Please have a look at the [contribution guidelines](./CONTRIBUTING.md). ## Rust Version Support Please note that only the latest stable Rust toolchain is supported. -All stable toolchains since 1.70 _should_ work. +All stable toolchains since 1.74 _should_ work. ## Contact diff --git a/rust-toolchain.toml b/rust-toolchain.toml index d03c251b..cc47d97a 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "1.70" # also update this in the readme, changelog, and github actions +channel = "1.74" # also update this in the readme, changelog, and github actions components = ["clippy"] targets = ["armv7-unknown-linux-gnueabihf"]