From 1301e43898dc237d8b67278a45ed020a8d886229 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 12 Aug 2022 16:02:59 +0200 Subject: [PATCH] rm MSRV guarantee from docs --- CHANGELOG.md | 5 +++++ src/lib.rs | 7 +++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d7a2495..070806b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index 92463b31..0976fabf 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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)]