Skip to content

Commit 400a9d3

Browse files
committed
chore: release 0.7.0
Breaking trait unification (Cache<K, V>, capability traits, DynCache rename). See CHANGELOG.md for migration notes. Made-with: Cursor
1 parent d742dc6 commit 400a9d3

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.0] - 2026-04-09
11+
1012
### Breaking
1113
- Replace `ReadOnlyCache`, `CoreCache`, `MutableCache`, `FifoCacheTrait`, `LruCacheTrait`, `LfuCacheTrait`, `LrukCacheTrait` with a single unified `Cache<K, V>` trait.
1214
- Add five optional capability traits: `EvictingCache`, `VictimInspectable`, `RecencyTracking`, `FrequencyTracking`, `HistoryTracking`.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[package]
66
name = "cachekit"
7-
version = "0.6.0"
7+
version = "0.7.0"
88
edition = "2024"
99
rust-version = "1.85"
1010
authors = ["Thomas Korrison <ferrite.db@gmail.com>"]

bench-support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "render_docs"
99
path = "src/bin/render_docs.rs"
1010

1111
[dependencies]
12-
cachekit = { path = "..", version = "0.6.0", features = ["policy-all"] }
12+
cachekit = { path = "..", version = "0.7.0", features = ["policy-all"] }
1313
criterion = "0.8"
1414
rand = "0.10"
1515
rand_distr = "0.6"

0 commit comments

Comments
 (0)