rm MSRV guarantee from docs

This commit is contained in:
Jorge Aparicio 2022-08-12 16:02:59 +02:00
parent 06bd308da4
commit 1301e43898
2 changed files with 10 additions and 2 deletions

View File

@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
### Removed
- [breaking-change] this crate no longer has a Minimum Supported Rust Version (MSRV) guarantee and
should be used with the latest stable version of the Rust toolchain.
## [v0.7.16] - 2022-08-09
### Added

View File

@ -64,8 +64,11 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
//! This crate is guaranteed to compile on stable Rust 1.51 and up with its default set of features.
//! It *might* compile on older versions but that may change in any new patch release.
//! This crate does *not* have a Minimum Supported Rust Version (MSRV) and may make use of language
//! features and API in the standard library available in the latest stable Rust version.
//!
//! In other words, changes in the Rust version requirement of this crate are not considered semver
//! breaking change and may occur in patch version releases.
#![cfg_attr(not(test), no_std)]
#![deny(missing_docs)]