From d0a6804f0312170145f7dc848e0ac4ae04aafc74 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Mon, 4 Apr 2022 08:06:17 -0400 Subject: [PATCH] Prepare 0.7.5 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef13a7e..8f45e1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.7.5](https://github.com/jeromefroe/lru-rs/tree/0.7.5) - 2022-04-04 + +- Add `push` method. + ## [v0.7.4](https://github.com/jeromefroe/lru-rs/tree/0.7.4) - 2022-04-03 - Implement `IntoIterator` trait and fix lifetime bug in `get_or_insert`. diff --git a/Cargo.toml b/Cargo.toml index 576f7a5..25482fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.7.4" +version = "0.7.5" authors = ["Jerome Froelich "] description = "A LRU cache implementation" homepage = "https://github.com/jeromefroe/lru-rs"