Skip to content

Commit

Permalink
Release 0.3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Dec 15, 2022
1 parent f72020e commit 20625b9
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.18] - 2022-12-15

- Fix build error when not using `portable_atomic_unsafe_assume_single_core` cfg on AVR and MSP430 custom targets. ([#50](https://github.com/taiki-e/portable-atomic/pull/50))

Since 0.3.11, atomic CAS was supported without the cfg on AVR and MSP430 builtin targets, but that change was not applied to custom targets.
Expand Down Expand Up @@ -205,7 +207,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.17...HEAD
[Unreleased]: https://github.com/taiki-e/portable-atomic/compare/v0.3.18...HEAD
[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
[0.3.15]: https://github.com/taiki-e/portable-atomic/compare/v0.3.14...v0.3.15
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.17"
version = "0.3.18"
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.17"
version = "0.3.18"
edition = "2018"
rust-version = "1.34"
license = "Apache-2.0 OR MIT"
Expand All @@ -22,4 +22,4 @@ std = ["alloc"]
alloc = []

[dependencies]
portable-atomic = { version = "=0.3.17", path = "..", default-features = false }
portable-atomic = { version = "=0.3.18", path = "..", default-features = false }

0 comments on commit 20625b9

Please sign in to comment.