From cf57ac0cee018dd85d29cf20c2ad7fae5d7f571d Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Tue, 3 Oct 2023 20:33:15 -0400 Subject: [PATCH] Prepare 0.12.0 release --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74599d6..cc44c9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [v0.12.0](https://github.com/jeromefroe/lru-rs/tree/0.12.0) - 2023-10-03 + +- Add lifetime specifier to `try_get_or_insert_mut`. +- Add `BuildHasher` trait bound to `Debug` for `LruCache`. + ## [v0.11.1](https://github.com/jeromefroe/lru-rs/tree/0.11.1) - 2023-09-05 - Add `try_get_or_insert_mut` method. diff --git a/Cargo.toml b/Cargo.toml index 406a569..35936af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.11.1" +version = "0.12.0" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"