Skip to content

Commit

Permalink
Bump MSRV to 1.74
Browse files Browse the repository at this point in the history
Clap requires it.
  • Loading branch information
rnestler committed Mar 9, 2024
1 parent a496801 commit f7f159a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:

build_and_test:
runs-on: ubuntu-22.04
container: rust:1.71
container: rust:1.74
steps:
- uses: actions/checkout@v3
- run: cargo build
- run: cargo test

lint:
runs-on: ubuntu-22.04
container: rust:1.71
container: rust:1.74
steps:
- uses: actions/checkout@v3
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings

fmt:
runs-on: ubuntu-22.04
container: rust:1.71
container: rust:1.74
steps:
- uses: actions/checkout@v3
- run: rustup component add rustfmt
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Bump MSRV to 1.70
* Bump MSRV to 1.74
* Update dependencies

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "attractorr"
version = "0.6.1"
authors = ["Raphael Nestler <[email protected]>"]
edition = "2021"
rust-version = "1.71"
rust-version = "1.74"
description = "A CLI tool to scrape the web for magnet links"
repository = "https://github.com/rnestler/attractorr/"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit f7f159a

Please sign in to comment.