diff --git a/CHANGELOG.md b/CHANGELOG.md index c386369..0a463df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.7.0](https://github.com/jeromefroe/lru-rs/tree/0.7.0) - 2021-09-14 + +- Explicitly implement Borrow for String and Vec types for non-nightly. + ## [v0.6.6](https://github.com/jeromefroe/lru-rs/tree/0.6.6) - 2021-07-28 - Update dependency on hashbrown to 0.11.2. diff --git a/Cargo.toml b/Cargo.toml index 184675b..1408cb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.6.6" +version = "0.7.0" authors = ["Jerome Froelich "] description = "A LRU cache implementation" homepage = "https://github.com/jeromefroe/lru-rs"