aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPer Lindgren <per.lindgren@ltu.se>2021-12-25 18:15:41 +0100
committerPer Lindgren <per.lindgren@ltu.se>2021-12-25 18:15:41 +0100
commit28cf223bfd8a2a207adf341ce3dd0f97ba9699d0 (patch)
treef3c4179753118c68f7279f1949eaf216c864d298 /src
parent53306b1a7b470851fe3c1271133790f41d5f1d54 (diff)
Docfix: MSRV and Semantic Versioning
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 074e71e..25f9399 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -14,13 +14,13 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
-//! This crate is guaranteed to compile on stable Rust 1.36 (2018 edition) and up. It *might*
-//! compile on older versions but that may change in any new patch release.
+//! This crate is compiled and tested with the latest toolchain (rolling) as of the release date.
+//! If you run into compilation errors, try the latest stable release of the rust toolchain.
//!
//! # Semantic Versioning
//!
//! Like the Rust project, this crate adheres to [SemVer]: breaking changes in the API and semantics
-//! require a *semver bump* (a new minor version release), with the exception of breaking changes
+//! require a *semver bump* (since 1.0.0 a new major version release), with the exception of breaking changes
//! that fix soundness issues -- those are considered bug fixes and can be landed in a new patch
//! release.
//!