Skip to content

Commit

Permalink
Bump MSRV to 1.71
Browse files Browse the repository at this point in the history
  • Loading branch information
rnestler committed Feb 4, 2024
1 parent bdb38c2 commit 07d1017
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 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.70
container: rust:1.71
steps:
- uses: actions/checkout@v3
- run: cargo build
- run: cargo test

lint:
runs-on: ubuntu-22.04
container: rust:1.70
container: rust:1.71
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.70
container: rust:1.71
steps:
- uses: actions/checkout@v3
- run: rustup component add rustfmt
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.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"
Expand Down

0 comments on commit 07d1017

Please sign in to comment.