Skip to content

Commit

Permalink
ci: update minimum rust version to 1.70
Browse files Browse the repository at this point in the history
this is to fix the issue with installing sqlx-cli in ci
  • Loading branch information
delta1 committed Dec 5, 2023
1 parent e1c3a5d commit 8c0926a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.67
toolchain: 1.70
targets: armv7-unknown-linux-gnueabihf

- name: Build ${{ matrix.target }} ${{ matrix.bin }} release binary
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.67
toolchain: 1.70
components: clippy,rustfmt

- uses: Swatinem/[email protected]
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.67
toolchain: 1.70
targets: armv7-unknown-linux-gnueabihf

- name: Build binary
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
id: make-commit
env:
DPRINT_VERSION: 0.39.1
RUST_TOOLCHAIN: 1.67
RUST_TOOLCHAIN: 1.70
run: |
rustup component add rustfmt --toolchain "$RUST_TOOLCHAIN-x86_64-unknown-linux-gnu"
curl -fsSL https://dprint.dev/install.sh | sh -s $DPRINT_VERSION
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Minimum Supported Rust Version (MSRV) bumped to 1.70

## [0.12.3] - 2023-09-20

- Swap: If no Monero daemon is manually specified, we will automatically choose one from a list of public daemons by connecting to each and checking their availability.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.67 _should_ work.
All stable toolchains since 1.70 _should_ work.

## Contact

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.67" # also update this in the readme, changelog, and github actions
channel = "1.70" # also update this in the readme, changelog, and github actions
components = ["clippy"]
targets = ["armv7-unknown-linux-gnueabihf"]

0 comments on commit 8c0926a

Please sign in to comment.