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"