From 121ac9da71354fe9e507cd66e2b2bacac72fa0b5 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Wed, 28 Jul 2021 21:15:07 -0400 Subject: [PATCH] Prepare 0.6.6 release --- CHANGELOG.md | 6 +++++- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 937b281..c386369 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## [v0.6.6](https://github.com/jeromefroe/lru-rs/tree/0.6.5) - 2021-02-12 +## [v0.6.6](https://github.com/jeromefroe/lru-rs/tree/0.6.6) - 2021-07-28 + +- Update dependency on hashbrown to 0.11.2. + +## [v0.6.5](https://github.com/jeromefroe/lru-rs/tree/0.6.5) - 2021-02-12 - Add `unbounded_with_hasher` constructor. diff --git a/Cargo.toml b/Cargo.toml index ae5d86e..184675b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.6.5" +version = "0.6.6" authors = ["Jerome Froelich "] description = "A LRU cache implementation" homepage = "https://github.com/jeromefroe/lru-rs"