diff --git a/cortex-m-rt/CHANGELOG.md b/cortex-m-rt/CHANGELOG.md index 0d230f65..a8ba0baa 100644 --- a/cortex-m-rt/CHANGELOG.md +++ b/cortex-m-rt/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v0.7.6] + - Mark `pre_init` as deprecated - Add `set_msplim` feature to conditionally set the MSPLIM register at device reset ([#580]). @@ -657,8 +659,9 @@ section size addr Initial release -[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.5...HEAD -[v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...c-m-rt-v0.7.5 +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.6...HEAD +[v0.7.6]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.5...c-m-rt-v0.7.6 +[v0.7.5]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.4...c-m-rt-v0.7.5 [v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.3...c-m-rt-v0.7.4 [v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.2...c-m-rt-v0.7.3 [v0.7.2]: https://github.com/rust-embedded/cortex-m/compare/c-m-rt-v0.7.1...c-m-rt-v0.7.2 diff --git a/cortex-m-rt/Cargo.toml b/cortex-m-rt/Cargo.toml index 99bac7ea..437d8639 100644 --- a/cortex-m-rt/Cargo.toml +++ b/cortex-m-rt/Cargo.toml @@ -7,14 +7,14 @@ license = "MIT OR Apache-2.0" name = "cortex-m-rt" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.5" +version = "0.7.6" autoexamples = true links = "cortex-m-rt" # Prevent multiple versions of cortex-m-rt being linked edition = "2024" rust-version = "1.85" [dependencies] -cortex-m-rt-macros = { path = "macros", version = "=0.7.5" } +cortex-m-rt-macros = { path = "macros", version = "=0.7.6" } [dev-dependencies] panic-halt = "0.2.0" diff --git a/cortex-m-rt/macros/Cargo.toml b/cortex-m-rt/macros/Cargo.toml index 56c17f00..1058c5d5 100644 --- a/cortex-m-rt/macros/Cargo.toml +++ b/cortex-m-rt/macros/Cargo.toml @@ -6,7 +6,7 @@ keywords = ["arm", "cortex-m", "runtime", "startup"] license = "MIT OR Apache-2.0" name = "cortex-m-rt-macros" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.5" +version = "0.7.6" edition = "2021" rust-version = "1.85" diff --git a/cortex-m-rt/src/lib.rs b/cortex-m-rt/src/lib.rs index b04fd57e..631faedc 100644 --- a/cortex-m-rt/src/lib.rs +++ b/cortex-m-rt/src/lib.rs @@ -500,7 +500,7 @@ //! //! # Minimum Supported Rust Version (MSRV) //! -//! The MSRV of this release is Rust 1.61.0. +//! The MSRV of this release is Rust 1.85. // # Developer notes // diff --git a/cortex-m/src/lib.rs b/cortex-m/src/lib.rs index 481505b9..888b30e2 100644 --- a/cortex-m/src/lib.rs +++ b/cortex-m/src/lib.rs @@ -57,7 +57,7 @@ //! //! # Minimum Supported Rust Version (MSRV) //! -//! This crate is guaranteed to compile on stable Rust 1.61 and up. It *might* +//! This crate is guaranteed to compile on stable Rust 1.85 and up. It *might* //! compile with older versions but that may change in any new patch release. #![deny(missing_docs)]