diff --git a/CHANGELOG.md b/CHANGELOG.md index 91c9c2f..da8c31b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.18.2](https://github.com/jeromefroe/lru-rs/tree/0.18.2) - 2026-08-03 + +- Fix panic-safety unsoundness in `pop` method. + ## [v0.18.1](https://github.com/jeromefroe/lru-rs/tree/0.18.1) - 2026-07-09 - Add `find_and_promote` method. diff --git a/Cargo.toml b/Cargo.toml index 31ccd3f..8d68aac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.18.1" +version = "0.18.2" authors = ["Jerome Froelich "] rust-version = "1.85.0" categories = ["caching", "no-std"]