Skip to content

Commit 51280cf

Browse files
committed
release 0.56.0 / 0.25.0
1 parent ca6b8db commit 51280cf

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@
33
## [Unreleased]
44
## Added
55
## Changed
6-
- All timed/expiring caches now use std::time::Duration values instead of raw seconds/millis.
6+
## Removed
7+
8+
## [0.56.0 / [cached_proc_macro[0.25.0]]]
9+
## Added
10+
## Changed
11+
- *BREAKING* All timed/expiring caches now use std::time::Duration values instead of raw seconds/millis.
12+
- Update `redis` to 0.32
13+
- Update `hashbrown` to 0.15
714
## Removed
815

916
## [0.55.1 / [cached_proc_macro[0.24.0]]]
1017
## Added
11-
- Add `sync_writes = "by_key"` support to `#[cached]
18+
- Add `sync_writes = "by_key"` support to `#[cached]`
1219
## Changed
1320
- Update `redis` to 0.29.0
1421
- Update `directories` to 6.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cached"
3-
version = "0.55.1"
3+
version = "0.56.0"
44
authors = ["James Kominick <[email protected]>"]
55
description = "Generic cache implementations and simplified function memoization"
66
repository = "https://github.com/jaemk/cached"
@@ -30,7 +30,7 @@ disk_store = ["sled", "serde", "rmp-serde", "directories"]
3030
wasm = []
3131

3232
[dependencies.cached_proc_macro]
33-
version = "0.24.0"
33+
version = "0.25.0"
3434
path = "cached_proc_macro"
3535
optional = true
3636

cached_proc_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cached_proc_macro"
3-
version = "0.24.0"
3+
version = "0.25.0"
44
authors = ["csos95 <[email protected]>", "James Kominick <[email protected]>"]
55
description = "Generic cache implementations and simplified function memoization"
66
repository = "https://github.com/jaemk/cached"

0 commit comments

Comments
 (0)