diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aa8d0b..38c3bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,10 @@ ## Unreleased -- +## 1.20.2 + +- Remove `portable_atomic` from Cargo.lock if it is not, in fact, used: [#267](https://github.com/matklad/once_cell/pull/267) + This is a work-around for this cargo bug: https://github.com/rust-lang/cargo/issues/10801. ## 1.20.1 diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 0166276..940448b 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -43,7 +43,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "once_cell" -version = "1.20.1" +version = "1.20.2" dependencies = [ "critical-section", "parking_lot_core", diff --git a/Cargo.toml b/Cargo.toml index ef945f1..186d071 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "once_cell" -version = "1.20.1" +version = "1.20.2" authors = ["Aleksey Kladov "] license = "MIT OR Apache-2.0" edition = "2021"