Skip to content

Commit

Permalink
Bump MSRV to 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
rkday-pro committed Jul 31, 2023
1 parent 7f43921 commit 20871c9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false # Even if one job fails we still want to see the other ones
matrix:
# 1.53 is MSRV. Keep in sync with Cargo.toml
rust: [1.53, stable, nightly]
# 1.63 is MSRV. Keep in sync with Cargo.toml
rust: [1.63, stable, nightly]
# NOTE: Features to test must be specified manually. They are applied to all versions seperately.
#
# This has the advantage of being more flexibile and thorough
Expand All @@ -47,5 +47,7 @@ jobs:
# NOTE: We only run `cargo test`. No need for a seperate `cargo check`
- name: Test
run: |
cargo test --verbose --features "${{ matrix.features }}"
# Pin a time version with a compatible MSRV
cargo update --package time --precise 0.3.20
cargo test --locked --verbose --features "${{ matrix.features }}"
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

<!-- next-url -->
## [Unreleased](https://github.com/slog-rs/term/compare/v2.8.1...HEAD) - ReleaseDate
* Switch from `atty` to `is_terminal`
* Avoids [RUSTSEC-2021-0145](https://rustsec.org/advisories/RUSTSEC-2021-0145)
* BREAKING: Bump MSRV to 1.63

## 2.9.0 - 2022-02-20
### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ edition = "2018"
#
# The first version of Cargo that supports this field was in Rust 1.56.0.
# In older releases, the field will be ignored, and Cargo will display a warning.
rust-version = "1.53"
rust-version = "1.63"

[features]
nested-values = ["erased-serde", "serde", "serde_json", "slog/nested-values"]
Expand Down

0 comments on commit 20871c9

Please sign in to comment.