From bf52926069f78cf3709083fce5b69449e6ba3aef Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Tue, 2 Jun 2026 21:08:00 +0200 Subject: [PATCH 1/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 319f4c1..10bde5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -No unreleased changes yet +- Add support for [`loom`](https://docs.rs/loom) critical sections (using `cfg(loom)`) to the `std` implementation. [#58](https://github.com/rust-embedded/critical-section/pull/58) ## [v1.2.0] - 2024-10-16 From 4645d149a3c85707c351ccabba08bb8a4853ef79 Mon Sep 17 00:00:00 2001 From: datdenkikniet Date: Tue, 2 Jun 2026 21:08:44 +0200 Subject: [PATCH 2/2] Release v1.3.0 --- CHANGELOG.md | 7 ++++++- Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10bde5c..91a4a72 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.3.0] - 2026-06-02 + - Add support for [`loom`](https://docs.rs/loom) critical sections (using `cfg(loom)`) to the `std` implementation. [#58](https://github.com/rust-embedded/critical-section/pull/58) ## [v1.2.0] - 2024-10-16 @@ -129,7 +133,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.2.0...HEAD +[Unreleased]: https://github.com/rust-embedded/critical-section/compare/v1.3.0...HEAD +[v1.3.0]: https://github.com/rust-embedded/critical-section/compare/v1.2.0...v1.3.0 [v1.2.0]: https://github.com/rust-embedded/critical-section/compare/v1.1.3...v1.2.0 [v1.1.3]: 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 diff --git a/Cargo.toml b/Cargo.toml index 92a39f5..0735501 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "critical-section" -version = "1.2.0" +version = "1.3.0" edition = "2018" description = "Cross-platform critical section" repository = "https://github.com/rust-embedded/critical-section"