Skip to content

Commit

Permalink
clarify that MSRV does bump the minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Aug 21, 2023
1 parent 3cd6549 commit 874f937
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib.rs
Expand Up @@ -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
//!
Expand Down

0 comments on commit 874f937

Please sign in to comment.