From 874f9373abd7feaf923a3b3c34bfb3383529c671 Mon Sep 17 00:00:00 2001 From: Alex Kladov Date: Mon, 21 Aug 2023 18:07:30 +0100 Subject: [PATCH] clarify that MSRV does bump the minor version --- src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 07ca8f8..90d3657 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -275,11 +275,11 @@ //! //! # Minimum Supported `rustc` Version //! -//! If only the `std` feature is enabled, MSRV will be updated conservatively, -//! supporting at least latest 8 versions of the compiler. When using other -//! features, like `parking_lot`, MSRV might be updated more frequently, up to -//! the latest stable. In both cases, increasing MSRV is *not* considered a -//! semver-breaking change. +//! If only the `std`, `alloc`, or `race` features are enabled, MSRV will be +//! updated conservatively, supporting at least latest 8 versions of the compiler. +//! When using other features, like `parking_lot`, MSRV might be updated more +//! frequently, up to the latest stable. In both cases, increasing MSRV is *not* +//! considered a semver-breaking change and requires only a minor version bump. //! //! # Implementation details //!