From d3b8de7115c18caca2bab3544fa7fef89c9157a3 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Sat, 4 Mar 2023 14:55:43 -0500 Subject: [PATCH] Prepare 0.10.0 release --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a40b1e..2e6bead 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## Unreleased +## [v0.10.0](https://github.com/jeromefroe/lru-rs/tree/0.10.0) - 2023-03-04 + +- Remove `KeyRef` from the public API. ## [v0.9.0](https://github.com/jeromefroe/lru-rs/tree/0.9.0) - 2022-12-31 diff --git a/Cargo.toml b/Cargo.toml index 9ff2b38..57bff5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.9.0" +version = "0.10.0" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"