diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a591e7..b65eb8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.16.0](https://github.com/jeromefroe/lru-rs/tree/0.16.0) - 2025-07-02 + +- Implement `Clone` for caches with custom hashers. + ## [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. diff --git a/Cargo.toml b/Cargo.toml index 842db7b..171e21e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.15.0" +version = "0.16.0" authors = ["Jerome Froelich "] rust-version = "1.70.0" categories = ["caching", "no-std"]