From 4fb1543e28b4d326fa054161a037e3d28adf2ae6 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Tue, 30 Jul 2024 21:18:57 -0400 Subject: [PATCH] Prepare 0.12.4 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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"