From 79b5f07263e6b28fb3b0a059f5723b11ccf0be8b Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 4 Aug 2022 05:08:10 +0900 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0be6a0e..e581bcc 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.2.0] - 2022-08-03 + - Use `portable-atomic` crate on no-std targets to soundly support targets that do not have atomic load/store. ([#4](https://github.com/taiki-e/atomic-memcpy/pull/4)) - `inline-always` optional feature is now considered unstable. @@ -34,7 +36,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/atomic-memcpy/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/taiki-e/atomic-memcpy/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/taiki-e/atomic-memcpy/compare/v0.1.3...v0.2.0 [0.1.3]: https://github.com/taiki-e/atomic-memcpy/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/taiki-e/atomic-memcpy/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/taiki-e/atomic-memcpy/compare/v0.1.0...v0.1.1 diff --git a/Cargo.toml b/Cargo.toml index e63bed6..aeac4b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atomic-memcpy" -version = "0.1.3" #publish:version +version = "0.2.0" #publish:version edition = "2018" rust-version = "1.36" license = "Apache-2.0 OR MIT"