Skip to content

Commit 6dfeaef

Browse files
committed
Increase MSRV to 1.51.0 due to const_generics
1 parent e0ff11c commit 6dfeaef

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
include:
2323
# Test MSRV
24-
- rust: 1.40.0
24+
- rust: 1.51.0
2525
TARGET: x86_64-unknown-linux-gnu
2626

2727
# Test nightly but don't fail

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
- [breaking-change] use `const_generics` in `to_string()` and `to_vec()` functions.
1313
- [breaking-change] update to `heapless` `0.7`.
14+
- [breaking-change] increase MSRV to Rust `1.51.0` due to `const_generics`.
1415

1516
### Added
1617

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is developed and maintained by the [rust-embedded-community].
1212

1313
## Minimum Supported Rust Version (MSRV)
1414

15-
This crate is guaranteed to compile on stable Rust 1.40.0 and up. It *might*
15+
This crate is guaranteed to compile on stable Rust 1.51.0 and up. It *might*
1616
compile with older versions but that may change in any new patch release.
1717

1818
## License

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
//!
5151
//! # Minimum Supported Rust Version (MSRV)
5252
//!
53-
//! This crate is guaranteed to compile on stable Rust 1.40.0 and up. It *might* compile with older
53+
//! This crate is guaranteed to compile on stable Rust 1.51.0 and up. It *might* compile with older
5454
//! versions but that may change in any new patch release.
5555
5656
#![deny(missing_docs)]

0 commit comments

Comments
 (0)