diff --git a/CHANGELOG.md b/CHANGELOG.md index 7355fbd..44bee59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.12.4](https://github.com/jeromefroe/lru-rs/tree/0.12.4) - 2024-07-30 + +- Add methods that take a reference to the key that should be inserted. + ## [v0.12.3](https://github.com/jeromefroe/lru-rs/tree/0.12.3) - 2024-02-24 - Add `get_key_value_mut` method. diff --git a/Cargo.toml b/Cargo.toml index cf591bc..9b1ddb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.12.3" +version = "0.12.4" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"