diff --git a/CHANGELOG.md b/CHANGELOG.md index 0feb53b..3a591e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.15.0](https://github.com/jeromefroe/lru-rs/tree/0.15.0) - 2025-06-26 + +- Return bool from `promote` and `demote` to indicate whether key was found. + ## [v0.14.0](https://github.com/jeromefroe/lru-rs/tree/0.14.0) - 2025-04-12 - Use `NonZeroUsize::MAX` instead of `unwrap()`, and update MSRV to 1.70.0. diff --git a/Cargo.toml b/Cargo.toml index 324ca5e..783f480 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.14.0" +version = "0.15.0" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"