Skip to content

Commit

Permalink
Merge pull request #442 from samueltardieu/restore-msrv
Browse files Browse the repository at this point in the history
Restore MSRV to 1.65.0
  • Loading branch information
samueltardieu committed Sep 22, 2023
2 parents 315218d + da496db commit 0d84d4f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/bors.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
status = [
"Check", "cargo deny", "pre-commit", "Rustfmt", "Clippy", "Test with minimal versions",
"Test suite (stable)", "Test suite (beta)", "Test suite (nightly)", "Test suite (1.70.0)"
"Test suite (stable)", "Test suite (beta)", "Test suite (nightly)", "Test suite (1.65.0)"
]
delete_merged_branches = true
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
needs: check
strategy:
matrix:
toolchain: [stable, beta, nightly, 1.70.0]
toolchain: [stable, beta, nightly, 1.65.0]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = ["Samuel Tardieu <sam@rfc1149.net>"]
categories = ["algorithms"]
readme = "README.md"
edition = "2021"
rust-version = "1.70.0"
rust-version = "1.65.0"

[package.metadata.release]
sign-commit = true
Expand All @@ -31,7 +31,7 @@ thiserror = "1.0.44"
deprecate-until = "0.1.0"

[dev-dependencies]
codspeed-criterion-compat = "2.2.0"
codspeed-criterion-compat = "1.1.0"
itertools = "0.11.0"
lazy_static = "1.4.0"
movingai = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ floating-point types (such as `f32`) that implement `PartialOrd`
in this context, you can wrap them into compliant types using the
[ordered-float](https://crates.io/crates/ordered-float) crate.

The minimum supported Rust version (MSRV) is Rust 1.70.0.
The minimum supported Rust version (MSRV) is Rust 1.65.0.

## License

Expand Down
2 changes: 1 addition & 1 deletion tests/ui.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[test]
fn ui() {
match std::env::var("TOOLCHAIN").as_deref() {
Ok("stable") | Ok("1.70.0") => (),
Ok("stable") | Ok("1.65.0") => (),
_ => {
let t = trybuild::TestCases::new();
t.compile_fail("tests/ui/*.rs");
Expand Down

0 comments on commit 0d84d4f

Please sign in to comment.