Skip to content

Commit

Permalink
release 0.45.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaemk committed Sep 5, 2023
1 parent 8918b8f commit 96dea48
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]]
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cached"
version = "0.44.0"
version = "0.45.0"
authors = ["James Kominick <james@kominick.com>"]
description = "Generic cache implementations and simplified function memoization"
repository = "https://github.com/jaemk/cached"
Expand Down

0 comments on commit 96dea48

Please sign in to comment.