From 76742d3dfb0095055f0c0ab6deff25df77dd8d48 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Wed, 9 Aug 2023 12:07:14 +0200 Subject: [PATCH] Release v1.1.2 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2d561f..afd47a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +No unreleased changes yet + +## [v1.1.2] - 2023-08-09 + - Clarified that `acquire()` must provide ordering guarantees - Updated atomic-polyfill reference to point to portable-atomic instead - Improved documentation for `Mutex` example @@ -115,7 +119,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.1...HEAD +[Unreleased]: https://github.com/rust-embedded/critical-section/compare/v1.1.2...HEAD +[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 [v1.0.0]: https://github.com/rust-embedded/critical-section/compare/v1.0.0-alpha.2...v1.0.0 diff --git a/Cargo.toml b/Cargo.toml index 031e927..beedd2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "critical-section" -version = "1.1.1" +version = "1.1.2" edition = "2018" description = "Cross-platform critical section" repository = "https://github.com/rust-embedded/critical-section"