diff options
author | 2022-08-13 17:24:54 +0000 | |
---|---|---|
committer | 2022-08-13 17:24:54 +0000 | |
commit | 641e41904313b13538ffeed10b930b1adabb025b (patch) | |
tree | 0e457c5b94a7efdcee9df3da0c20043e5a7a55bb | |
parent | dc539a952a2411a28d63054b1af03eaaa8a58029 (diff) | |
parent | df9a479f8a6260feb7e9fc05fa0e001f555b9340 (diff) | |
download | cortex-m-641e41904313b13538ffeed10b930b1adabb025b.tar.gz cortex-m-641e41904313b13538ffeed10b930b1adabb025b.tar.zst cortex-m-641e41904313b13538ffeed10b930b1adabb025b.zip |
Merge #449v0.7.6
449: Prepare for v0.7.6 r=newAM a=adamgreig
Co-authored-by: Adam Greig <adam@adamgreig.com>
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4beab90..39333f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] -- Added `critical-section-single-core` feature which provides an implementation for the `critical_section` crate for single-core systems, based on disabling all interrupts. (#448) +## [v0.7.6] - 2022-08-12 + +- Added `critical-section-single-core` feature which provides an implementation for the `critical-section` crate for single-core systems, based on disabling all interrupts. (#448) ## [v0.7.5] - 2022-05-15 @@ -748,7 +750,8 @@ fn main() { - Functions to get the vector table - Wrappers over miscellaneous instructions like `bkpt` -[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.5...HEAD +[Unreleased]: https://github.com/rust-embedded/cortex-m/compare/v0.7.6...HEAD +[v0.7.6]: https://github.com/rust-embedded/cortex-m/compare/v0.7.5...v0.7.6 [v0.7.5]: https://github.com/rust-embedded/cortex-m/compare/v0.7.4...v0.7.5 [v0.7.4]: https://github.com/rust-embedded/cortex-m/compare/v0.7.3...v0.7.4 [v0.7.3]: https://github.com/rust-embedded/cortex-m/compare/v0.7.2...v0.7.3 @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" name = "cortex-m" readme = "README.md" repository = "https://github.com/rust-embedded/cortex-m" -version = "0.7.5" +version = "0.7.6" edition = "2018" links = "cortex-m" # prevent multiple versions of this crate to be linked together |