diff --git a/CHANGELOG.md b/CHANGELOG.md index 51c155b..336e0ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.3](https://github.com/s2-streamstore/cachey/compare/0.10.2...0.10.3) - 2026-02-20 + +### Fixed + +- *(types)* reject control characters in bucket names ([#84](https://github.com/s2-streamstore/cachey/pull/84)) +- *(object_store)* merge per-request timeout and retry overrides ([#85](https://github.com/s2-streamstore/cachey/pull/85)) +- classify coalesced cache misses in PageGetExecutor ([#82](https://github.com/s2-streamstore/cachey/pull/82)) + ## [0.10.2](https://github.com/s2-streamstore/cachey/compare/0.10.1...0.10.2) - 2026-02-19 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 3beed62..1041456 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -931,7 +931,7 @@ checksum = "6bd91ee7b2422bcb158d90ef4d14f75ef67f340943fc4149891dcce8f8b972a3" [[package]] name = "cachey" -version = "0.10.2" +version = "0.10.3" dependencies = [ "async-stream", "aws-config", diff --git a/Cargo.toml b/Cargo.toml index c6320a0..029f848 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cachey" -version = "0.10.2" +version = "0.10.3" edition = "2024" authors = ["s2 team "] license = "MIT"