diff --git a/CHANGELOG.md b/CHANGELOG.md index f95eb08..3abc3a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1](https://github.com/s2-streamstore/cachey/compare/0.10.0...0.10.1) - 2026-02-19 + +### Fixed + +- *(throughput)* use fractional lookback divisor ([#78](https://github.com/s2-streamstore/cachey/pull/78)) +- *(object_store)* prioritize client-ordered buckets and correct decay ([#76](https://github.com/s2-streamstore/cachey/pull/76)) + ## [0.10.0](https://github.com/s2-streamstore/cachey/compare/0.9.3...0.10.0) - 2026-02-19 ### Added diff --git a/Cargo.lock b/Cargo.lock index de7b9bb..e345ca5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -931,7 +931,7 @@ checksum = "6bd91ee7b2422bcb158d90ef4d14f75ef67f340943fc4149891dcce8f8b972a3" [[package]] name = "cachey" -version = "0.10.0" +version = "0.10.1" dependencies = [ "async-stream", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index ef0af41..477df74 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cachey" -version = "0.10.0" +version = "0.10.1" edition = "2024" authors = ["s2 team "] license = "MIT"