Skip to content

Commit

Permalink
minimum supported Rust version is now 1.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
huxi committed Jul 3, 2021
1 parent 43d3106 commit e499ded
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ os:
- osx
- windows
rust:
- 1.40.0
- 1.41.0
- stable
- beta
- nightly
Expand All @@ -23,9 +23,7 @@ after_script:
script:
- echo "Rust version $TRAVIS_RUST_VERSION"
- cargo build --verbose
- if [ $TRAVIS_RUST_VERSION != "1.40.0" ]; then
cargo clippy --verbose --all-targets --all-features -- -D warnings;
fi
- cargo clippy --verbose --all-targets --all-features -- -D warnings
- cargo fmt --all -- --check
- cargo test --verbose --no-default-features
- cargo test --verbose --no-default-features --features "rand"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased][unreleased]
### Changed
- minimum supported Rust version is now 1.41.0
- `cargo update`

## [0.10.1] - 2021-01-25
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

This is a Rust implementation of the [ULID][ulid] Universally Unique Lexicographically Sortable Identifiers.

This crate requires **Rust 1.40 or later**.
This crate requires **Rust 1.41 or later**.

Take a look at the [changelog][changelog] for a detailed list of all changes.

Expand Down

0 comments on commit e499ded

Please sign in to comment.