From 7ba52edfe05a828a80379593062640f3ae592227 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 25 Dec 2022 19:34:42 +0900 Subject: [PATCH] Release 0.3.19 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- portable-atomic-util/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41ee5df1..2e77445c 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.19] - 2022-12-25 + - Add `AtomicI*::{fetch_neg,neg}` and `AtomicF*::fetch_neg` methods. ([#54](https://github.com/taiki-e/portable-atomic/pull/54)) `AtomicI*::neg` are equivalent to the corresponding `fetch_*` methods, but do not return the previous value. They are intended for optimization on platforms that have atomic instructions for the corresponding operation, such as x86's `lock neg`. @@ -227,7 +229,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.18...HEAD +[Unreleased]: https://github.com/taiki-e/portable-atomic/compare/v0.3.19...HEAD +[0.3.19]: https://github.com/taiki-e/portable-atomic/compare/v0.3.18...v0.3.19 [0.3.18]: https://github.com/taiki-e/portable-atomic/compare/v0.3.17...v0.3.18 [0.3.17]: https://github.com/taiki-e/portable-atomic/compare/v0.3.16...v0.3.17 [0.3.16]: https://github.com/taiki-e/portable-atomic/compare/v0.3.15...v0.3.16 diff --git a/Cargo.toml b/Cargo.toml index e504d4af..68490a53 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portable-atomic" -version = "0.3.18" +version = "0.3.19" edition = "2018" rust-version = "1.34" license = "Apache-2.0 OR MIT" diff --git a/portable-atomic-util/Cargo.toml b/portable-atomic-util/Cargo.toml index 7eac892f..a54a7de5 100644 --- a/portable-atomic-util/Cargo.toml +++ b/portable-atomic-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portable-atomic-util" -version = "0.3.18" +version = "0.3.19" edition = "2018" rust-version = "1.34" license = "Apache-2.0 OR MIT" @@ -25,4 +25,4 @@ std = ["alloc"] alloc = [] [dependencies] -portable-atomic = { version = "=0.3.18", path = "..", default-features = false } +portable-atomic = { version = "=0.3.19", path = "..", default-features = false }