From e77782e76e8ae68fdcbe36b075732a144ea1450b Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Sat, 31 Dec 2022 11:20:40 -0500 Subject: [PATCH] Prepare 0.9.0 release --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b883be..5a40b1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## [v0.9.0](https://github.com/jeromefroe/lru-rs/tree/0.9.0) - 2022-12-31 + +- Update dependency on hashbrown to 0.13. +- Change `LruCache.map` to hold a pointer, rather than owned `LruEntry`. + ## [v0.8.1](https://github.com/jeromefroe/lru-rs/tree/0.8.1) - 2022-10-01 - Add "caching" and "no-std" to list of categories. diff --git a/Cargo.toml b/Cargo.toml index 3588448..9ff2b38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.8.1" +version = "0.9.0" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"