File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
13
13
14
14
### Fixed
15
15
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
+
16
21
## [ v0.7.16] - 2022-08-09
17
22
18
23
### Added
Original file line number Diff line number Diff line change 64
64
//!
65
65
//! # Minimum Supported Rust Version (MSRV)
66
66
//!
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.
69
72
70
73
#![ cfg_attr( not( test) , no_std) ]
71
74
#![ deny( missing_docs) ]
You can’t perform that action at this time.
0 commit comments