From b42486918be8d3f45291007aea2d750c5877cd66 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Mon, 7 Oct 2024 06:51:26 -0700 Subject: [PATCH] Prepare 0.12.5 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44bee59..e46acf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.12.5](https://github.com/jeromefroe/lru-rs/tree/0.12.5) - 2024-10-30 + +- Upgrade hashbrown dependency to 0.15. + ## [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. diff --git a/Cargo.toml b/Cargo.toml index db43477..61556cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.12.4" +version = "0.12.5" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"