From 9e82e0a6e438fb12bdbe86c1063eb04b63c88969 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Tue, 14 Sep 2021 20:39:51 -0400 Subject: [PATCH] Release 0.7.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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"