From 46c2d0d7079e13f9f0edefce5717d2faba50fff4 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 13 Sep 2022 20:39:20 +0200 Subject: [PATCH] Release v1.1.1 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4647337..5a478ee 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 - (Add unreleased changes here) +## [v1.1.1] - 2022-09-13 + +- On the `std` implementation, panicking inside the `critical_section::with()` closure no longer accidentally leaves the critical section locked (#26). + ## [v1.1.0] - 2022-08-17 - Added built-in critical section implementation using `std::sync::Mutex`, enabled by the `std` Cargo feature. @@ -68,7 +72,8 @@ Breaking changes: - First release -[Unreleased]: https://github.com/rust-embedded/critical-section/compare/v1.1.0...HEAD +[Unreleased]: https://github.com/rust-embedded/critical-section/compare/v1.1.1...HEAD +[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 [v1.0.0-alpha.2]: https://github.com/rust-embedded/critical-section/compare/v1.0.0-alpha.1...v1.0.0-alpha.2 diff --git a/Cargo.toml b/Cargo.toml index 9e59595..031e927 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "critical-section" -version = "1.1.0" +version = "1.1.1" edition = "2018" description = "Cross-platform critical section" repository = "https://github.com/rust-embedded/critical-section"