diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ae83ef..7355fbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.12.3](https://github.com/jeromefroe/lru-rs/tree/0.12.3) - 2024-02-24 + +- Add `get_key_value_mut` method. + ## [v0.12.2](https://github.com/jeromefroe/lru-rs/tree/0.12.2) - 2024-01-28 - Add `clone` method. diff --git a/Cargo.toml b/Cargo.toml index 67b0ebe..cf591bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.12.2" +version = "0.12.3" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"