From 28f8fe99aec23ea61617085b8783ebbd98644371 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Thu, 29 Jun 2023 23:26:00 -0400 Subject: [PATCH] Prepare 0.10.1 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e6bead..c7af28b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.10.1](https://github.com/jeromefroe/lru-rs/tree/0.10.1) - 2023-07-29 + +- Add `try_get_or_insert` method. + ## [v0.10.0](https://github.com/jeromefroe/lru-rs/tree/0.10.0) - 2023-03-04 - Remove `KeyRef` from the public API. diff --git a/Cargo.toml b/Cargo.toml index 57bff5e..2306ea9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.10.0" +version = "0.10.1" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"