Skip to content

Commit

Permalink
Release 0.3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 25, 2022
1 parent 4f2bea7 commit 7ba52ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions portable-atomic-util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 }

0 comments on commit 7ba52ed

Please sign in to comment.