Skip to content

Commit 1301e43

Browse files
committed
rm MSRV guarantee from docs
1 parent 06bd308 commit 1301e43

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

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

1414
### Fixed
1515

16+
### Removed
17+
18+
- [breaking-change] this crate no longer has a Minimum Supported Rust Version (MSRV) guarantee and
19+
should be used with the latest stable version of the Rust toolchain.
20+
1621
## [v0.7.16] - 2022-08-09
1722

1823
### Added

src/lib.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@
6464
//!
6565
//! # Minimum Supported Rust Version (MSRV)
6666
//!
67-
//! This crate is guaranteed to compile on stable Rust 1.51 and up with its default set of features.
68-
//! It *might* compile on older versions but that may change in any new patch release.
67+
//! This crate does *not* have a Minimum Supported Rust Version (MSRV) and may make use of language
68+
//! features and API in the standard library available in the latest stable Rust version.
69+
//!
70+
//! In other words, changes in the Rust version requirement of this crate are not considered semver
71+
//! breaking change and may occur in patch version releases.
6972
7073
#![cfg_attr(not(test), no_std)]
7174
#![deny(missing_docs)]

0 commit comments

Comments
 (0)