diff --git a/CHANGELOG.md b/CHANGELOG.md index 15edf40..b22e8e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,18 @@ ## [Unreleased] ## Added +## Changed +## Removed + +## [0.45.0] +## Added - Generate `*_no_cache` function for every cached function to allow calling the original function - without caching. This is backwards incompatible if you have a function with the same name. + without caching. **This is backwards incompatible if you have a function with the same name**. ## Changed - `tokio` dependency has been removed from `proc_macro` feature (originally unecessarily included). -- `async` feature has been removed from the `default` feature. This is a backwards incompatible change. +- `async` feature has been removed from the `default` feature. **This is a backwards incompatible change.** If you want to use `async` features, you need to enable `async` explicitly. +- remove accidental `#[doc(hidden)]` on the `stores` module ## Removed ## [0.44.0] / [cached_proc_macro[0.17.0]] diff --git a/Cargo.toml b/Cargo.toml index ec3f49c..32a7acc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cached" -version = "0.44.0" +version = "0.45.0" authors = ["James Kominick "] description = "Generic cache implementations and simplified function memoization" repository = "https://github.com/jaemk/cached"