From d547b60fe14f8a4b89f4a75391089b586773e1f6 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 14 Aug 2022 07:12:45 +0900 Subject: [PATCH] Release 0.3.12 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 270aee54..84a7f09d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com ## [Unreleased] +## [0.3.12] - 2022-08-13 + - Support atomic CAS on no-std pre-v6 ARM targets (e.g., thumbv4t-none-eabi) under unsafe cfg `portable_atomic_unsafe_assume_single_core`. ([#28](https://github.com/taiki-e/portable-atomic/pull/28)) ## [0.3.11] - 2022-08-12 @@ -157,7 +159,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com Initial release -[Unreleased]: https://github.com/taiki-e/portable-atomic/compare/v0.3.11...HEAD +[Unreleased]: https://github.com/taiki-e/portable-atomic/compare/v0.3.12...HEAD +[0.3.12]: https://github.com/taiki-e/portable-atomic/compare/v0.3.11...v0.3.12 [0.3.11]: https://github.com/taiki-e/portable-atomic/compare/v0.3.10...v0.3.11 [0.3.10]: https://github.com/taiki-e/portable-atomic/compare/v0.3.9...v0.3.10 [0.3.9]: https://github.com/taiki-e/portable-atomic/compare/v0.3.8...v0.3.9 diff --git a/Cargo.toml b/Cargo.toml index 3428e5cc..35b2e919 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portable-atomic" -version = "0.3.11" +version = "0.3.12" edition = "2018" rust-version = "1.34" license = "Apache-2.0 OR MIT"