From 4073a9bf4e77af67d82713b4164987254f145ce8 Mon Sep 17 00:00:00 2001 From: ByteAlex Date: Tue, 31 Aug 2021 17:23:46 +0200 Subject: [PATCH] Bump version to v0.1.1 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05be675..26b0e9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v0.1.1 +* Add additional helper methods + - update_if_exists + - update_mut_if_exists + - remove_if +* Change Backing Trait to support `remove_if`. This might be breaking if you have a custom backing. + # v0.1.0 * Add ttl-cache feature * \[Breaking] Return type of the loader function changed from Optional to Result diff --git a/Cargo.toml b/Cargo.toml index acfc9d9..4d4b5f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "cache_loader_async" description = "A thread safe loading cache with async loader functions based on tokio" repository = "https://github.com/ZeroTwo-Bot/cache-loader-async-rs" -version = "0.1.0" +version = "0.1.1" authors = ["Alexander Becker ", "Spencer Sharkey "] edition = "2018" keywords = ["cache", "async"]