diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 768c6c9..5543ddc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: build_and_test: runs-on: ubuntu-22.04 - container: rust:1.70 + container: rust:1.71 steps: - uses: actions/checkout@v3 - run: cargo build @@ -22,7 +22,7 @@ jobs: lint: runs-on: ubuntu-22.04 - container: rust:1.70 + container: rust:1.71 steps: - uses: actions/checkout@v3 - run: rustup component add clippy @@ -30,7 +30,7 @@ jobs: fmt: runs-on: ubuntu-22.04 - container: rust:1.70 + container: rust:1.71 steps: - uses: actions/checkout@v3 - run: rustup component add rustfmt diff --git a/CHANGELOG.md b/CHANGELOG.md index 38dbbc6..a6bc9bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + + * Bump MSRV to 1.70 + * Update dependencies + ### Added * Add `--version` flag and about text to CLI diff --git a/Cargo.toml b/Cargo.toml index 53ae5b8..1415f63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "attractorr" version = "0.6.1" authors = ["Raphael Nestler "] edition = "2021" -rust-version = "1.70" +rust-version = "1.71" description = "A CLI tool to scrape the web for magnet links" repository = "https://github.com/rnestler/attractorr/" license = "MIT OR Apache-2.0"