Skip to content

Commit

Permalink
Bump env_logger from 0.10.1 to 0.11.1 (#195)
Browse files Browse the repository at this point in the history
* Bump env_logger from 0.10.1 to 0.11.1

Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.10.1 to 0.11.1.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.1...v0.11.1)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump MSRV to 1.71

See rust-cli/env_logger@a77a761

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Raphael Nestler <raphael.nestler@gmail.com>
  • Loading branch information
dependabot[bot] and rnestler committed Feb 4, 2024
1 parent 624e058 commit d372093
Show file tree
Hide file tree
Showing 4 changed files with 79 additions and 10 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
74 changes: 69 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions 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 <raphael.nestler@gmail.com>"]
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 All @@ -26,7 +26,7 @@ termcolor = "1.3.0"
is-terminal = "0.4.10"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
env_logger = "0.10.0"
env_logger = "0.11.1"
log = "^0.4"
async-trait = "^0.1.77"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
Expand Down

0 comments on commit d372093

Please sign in to comment.