Skip to content

Commit

Permalink
Update MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
eldruin committed Dec 2, 2024
1 parent b118fdc commit 15ab450
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, 1.60.0]
rust: [stable, 1.62.0]
TARGET:
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]

### Changed
- MSRV bumped to 1.60 (required by `embedded-hal` 1.0.0)
- [breaking-change] Update `embedded-hal` to version 1.0.0
- [breaking-change] Renamed `mode::MultiLED` mode marker `mode::MultiLed` due to naming conventions.
- MSRV bumped to 1.62

### Fixed
- Masking reserved bitfields for FIFO write/read pointer and overflow registers.
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![crates.io](https://img.shields.io/crates/v/max3010x.svg)](https://crates.io/crates/max3010x)
[![Docs](https://docs.rs/max3010x/badge.svg)](https://docs.rs/max3010x)
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.62+-blue.svg)
[![Build Status](https://github.com/eldruin/max3010x-rs/workflows/Build/badge.svg)](https://github.com/eldruin/max3010x-rs/actions?query=workflow%3ABuild)
[![Coverage Status](https://coveralls.io/repos/github/eldruin/max3010x-rs/badge.svg?branch=master)](https://coveralls.io/github/eldruin/max3010x-rs?branch=master)

Expand Down Expand Up @@ -87,6 +88,11 @@ fn main() {
- [ ] Compatibility with MAX30101
- [ ] Compatibility with MAX30105

## Minimum Supported Rust Version (MSRV)

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

## Support

For questions, issues, feature requests, and other changes, please file an
Expand All @@ -108,4 +114,3 @@ at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall
be dual licensed as above, without any additional terms or conditions.

0 comments on commit 15ab450

Please sign in to comment.