diff --git a/portable-atomic-util/CHANGELOG.md b/portable-atomic-util/CHANGELOG.md index 78fe2829..d740d541 100644 --- a/portable-atomic-util/CHANGELOG.md +++ b/portable-atomic-util/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.1.5] - 2023-12-17 + - Improve offset calculation in `Arc::{into_raw,as_ptr,from_ptr}`. ([#141](https://github.com/taiki-e/portable-atomic/pull/141), thanks @gtsiam) ## [0.1.4] - 2023-12-16 @@ -42,7 +44,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/portable-atomic-util-0.1.4...HEAD +[Unreleased]: https://github.com/taiki-e/portable-atomic/compare/portable-atomic-util-0.1.5...HEAD +[0.1.5]: https://github.com/taiki-e/portable-atomic/compare/portable-atomic-util-0.1.4...portable-atomic-util-0.1.5 [0.1.4]: https://github.com/taiki-e/portable-atomic/compare/portable-atomic-util-0.1.3...portable-atomic-util-0.1.4 [0.1.3]: https://github.com/taiki-e/portable-atomic/compare/portable-atomic-util-0.1.2...portable-atomic-util-0.1.3 [0.1.2]: https://github.com/taiki-e/portable-atomic/compare/portable-atomic-util-0.1.1...portable-atomic-util-0.1.2 diff --git a/portable-atomic-util/Cargo.toml b/portable-atomic-util/Cargo.toml index 468e60e1..a3a21dbc 100644 --- a/portable-atomic-util/Cargo.toml +++ b/portable-atomic-util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "portable-atomic-util" -version = "0.1.4" #publish:version +version = "0.1.5" #publish:version edition = "2018" rust-version = "1.34" license = "Apache-2.0 OR MIT"