Skip to content

Commit

Permalink
msrv: 1.60 -> 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Aug 15, 2023
1 parent 9121f21 commit 6a0ba1c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
toolchain:
- "1.60"
- "1.63"
- "nightly"
steps:
- uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- The minimal supported Rust version (MSRV) is specified in the `Cargo.toml` to
offer clearer error messages to consumers with outdated Rust versions
- Renamed `delay::MockNoop` to `delay::NoopDelay`.
- Bump minimal supported Rust version (MSRV) to 1.63


## 0.9.0 - 2023-01-07
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include = [
"LICENSE-APACHE",
]
edition = "2021"
rust-version = "1.60"
rust-version = "1.63"

[features]
eh0 = ["dep:eh0", "dep:nb"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Pull requests for more mock implementations are welcome! :)

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.63 and up. It *might*
compile with older versions but that may change in any new patch release.

## Development Version of `embedded-hal`
Expand Down Expand Up @@ -86,6 +86,6 @@ be dual licensed as above, without any additional terms or conditions.
<!-- Badges -->
[github-actions]: https://github.com/dbrgn/embedded-hal-mock/actions/workflows/ci.yml
[github-actions-badge]: https://github.com/dbrgn/embedded-hal-mock/actions/workflows/ci.yml/badge.svg
[min-rust-badge]: https://img.shields.io/badge/rustc-1.60+-blue.svg
[min-rust-badge]: https://img.shields.io/badge/rustc-1.63+-blue.svg
[crates-io]: https://crates.io/crates/embedded-hal-mock
[version-badge]: https://img.shields.io/crates/v/embedded-hal-mock.svg
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
msrv = "1.60"
msrv = "1.63"

0 comments on commit 6a0ba1c

Please sign in to comment.