From 2bd820703080f0ee840dce10e7bd447fa8d2c83d Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Tue, 9 Sep 2025 07:09:00 -0400 Subject: [PATCH] Prepare 0.16.1 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b65eb8a..61d1dfd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.16.1](https://github.com/jeromefroe/lru-rs/tree/0.16.1) - 2025-09-08 + +- Fix `Clone` for unbounded cache. + ## [v0.16.0](https://github.com/jeromefroe/lru-rs/tree/0.16.0) - 2025-07-02 - Implement `Clone` for caches with custom hashers. diff --git a/Cargo.toml b/Cargo.toml index 171e21e..4360738 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.16.0" +version = "0.16.1" authors = ["Jerome Froelich "] rust-version = "1.70.0" categories = ["caching", "no-std"]