diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c0e0a3..9aa8d0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,13 @@ ## Unreleased -- +- -## 1.20.0 +## 1.20.1 -- propagate `critical-section` feature selection into `portable-atomic`; other minor updates [#260](https://github.com/matklad/once_cell/pull/260) +- Allow using `race` module using just `portable_atomic`, without `critical_section` and provide + better error messages on targets without atomic CAS instruction, + [#265](https://github.com/matklad/once_cell/pull/265). ## 1.19.0 diff --git a/Cargo.lock.msrv b/Cargo.lock.msrv index 9da533e..a4fc1af 100644 --- a/Cargo.lock.msrv +++ b/Cargo.lock.msrv @@ -43,7 +43,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "once_cell" -version = "1.20.0" +version = "1.20.1" dependencies = [ "critical-section", "parking_lot_core", diff --git a/Cargo.toml b/Cargo.toml index 54954f6..bb22eac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "once_cell" -version = "1.20.0" +version = "1.20.1" authors = ["Aleksey Kladov "] license = "MIT OR Apache-2.0" edition = "2021"