diff --git a/CHANGELOG.md b/CHANGELOG.md index afd47a3..38628d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 No unreleased changes yet +## [v1.1.3] - 2024-08-22 + +- Added option to use a `usize` sized restore state + ## [v1.1.2] - 2023-08-09 - Clarified that `acquire()` must provide ordering guarantees @@ -119,7 +123,8 @@ If you're seeing a linker error like `undefined symbol: _critical_section_1_0_ac - First release -[Unreleased]: https://github.com/rust-embedded/critical-section/compare/v1.1.2...HEAD +[Unreleased]: https://github.com/rust-embedded/critical-section/compare/v1.1.3...HEAD +[v1.1.2]: https://github.com/rust-embedded/critical-section/compare/v1.1.2...v1.1.3 [v1.1.2]: https://github.com/rust-embedded/critical-section/compare/v1.1.1...v1.1.2 [v1.1.1]: https://github.com/rust-embedded/critical-section/compare/v1.1.0...v1.1.1 [v1.1.0]: https://github.com/rust-embedded/critical-section/compare/v1.0.0...v1.1.0 diff --git a/Cargo.toml b/Cargo.toml index 63ae110..387d2a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "critical-section" -version = "1.1.2" +version = "1.1.3" edition = "2018" description = "Cross-platform critical section" repository = "https://github.com/rust-embedded/critical-section"