mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-26 05:29:38 +01:00
document MSRV and SemVer policy
This commit is contained in:
parent
557a51ede1
commit
1ba03b9f00
1 changed files with 14 additions and 0 deletions
14
src/lib.rs
14
src/lib.rs
|
@ -14,6 +14,20 @@
|
||||||
//!
|
//!
|
||||||
//! [`#[app]`]: ../cortex_m_rtfm_macros/attr.app.html
|
//! [`#[app]`]: ../cortex_m_rtfm_macros/attr.app.html
|
||||||
//!
|
//!
|
||||||
|
//! # Minimum Supported Rust Version (MSRV)
|
||||||
|
//!
|
||||||
|
//! This crate is guaranteed to compile on stable Rust 1.31 (2018 edition) and up. It *might*
|
||||||
|
//! compile on older versions but that may change in any new patch release.
|
||||||
|
//!
|
||||||
|
//! # 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
|
||||||
|
//! that fix soundness issues -- those are considered bug fixes and can be landed in a new patch
|
||||||
|
//! release.
|
||||||
|
//!
|
||||||
|
//! [SemVer]: https://semver.org/spec/v2.0.0.html
|
||||||
|
//!
|
||||||
//! # Cargo features
|
//! # Cargo features
|
||||||
//!
|
//!
|
||||||
//! - `timer-queue`. This opt-in feature enables the `schedule` API which can be used to schedule
|
//! - `timer-queue`. This opt-in feature enables the `schedule` API which can be used to schedule
|
||||||
|
|
Loading…
Reference in a new issue