Skip to content

Commit

Permalink
Drop strict MSRV policy
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrgn committed Sep 13, 2024
1 parent 6b69d2f commit 4e060fc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
strategy:
matrix:
toolchain:
- "1.63"
- "1.75"
- "stable"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Changed

- Drop fixed MSRV policy (#124)


## 0.11.1 - 2024-06-02

Expand Down
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ include = [
"LICENSE-APACHE",
]
edition = "2021"
rust-version = "1.63"

[features]
eh0 = ["dep:eh0", "dep:nb"]
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# embedded-hal-mock

[![GitHub Actions][github-actions-badge]][github-actions]
![Minimum Rust Version][min-rust-badge]
[![Crates.io Version][version-badge]][crates-io]

This is a collection of types that implement the embedded-hal traits.
Expand Down Expand Up @@ -55,8 +54,9 @@ Pull requests for more mock implementations are welcome! :)

## Minimum Supported Rust Version (MSRV)

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.
This crate is guaranteed to compile on the latest stable Rust release. It
*might* compile with older versions but that may change in any new patch
release.

## Development Version of `embedded-hal`

Expand Down Expand Up @@ -87,6 +87,5 @@ 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.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.63"
msrv = "1.75"

0 comments on commit 4e060fc

Please sign in to comment.