From 3d69719dfee8930321e8b1d6f463f00e55633825 Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Sat, 1 Oct 2022 08:28:23 -0400 Subject: [PATCH] Prepare 0.8.1 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfa578b..7b883be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## [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. + ## [v0.8.0](https://github.com/jeromefroe/lru-rs/tree/0.8.0) - 2022-09-11 - Use `NonZeroUsize` for LRU capacity instead of usize. diff --git a/Cargo.toml b/Cargo.toml index b01ccb5..63c68c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lru" -version = "0.8.0" +version = "0.8.1" authors = ["Jerome Froelich "] categories = ["caching", "no-std"] description = "A LRU cache implementation"