From 5fb5acabeea29d3d3df06400239257e12baa8568 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Sun, 28 Jan 2024 14:20:39 -0600 Subject: [PATCH] Prepare 0.12.2 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3145ea..1ae83ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.12.2](https://github.com/jeromefroe/lru-rs/tree/0.12.2) - 2024-01-28 + +- Add `clone` method. + ## [v0.12.1](https://github.com/jeromefroe/lru-rs/tree/0.12.1) - 2023-11-21 - Add `get_key_value` method. diff --git a/Cargo.toml b/Cargo.toml index 9220071..67b0ebe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.12.1" +version = "0.12.2" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"