From e0d89c7eaea0ccb6a65a2b1c2e32b9878af45a38 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Mon, 27 Jan 2025 19:14:48 -0500 Subject: [PATCH] Prepare 0.13.0 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e46acf8..17de303 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.13.0](https://github.com/jeromefroe/lru-rs/tree/0.13.0) - 2025-01-27 + +- Add `peek_mru` and `pop_mru` methods, upgrade dependency on `hashbrown` to 0.15.2, and update MSRV to 1.65.0. + ## [v0.12.5](https://github.com/jeromefroe/lru-rs/tree/0.12.5) - 2024-10-30 - Upgrade hashbrown dependency to 0.15. diff --git a/Cargo.toml b/Cargo.toml index 2eca49f..3db6a56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.12.5" +version = "0.13.0" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"