diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 78e7f27..ddfa3e3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.0" + ".": "0.11.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 04255f6..2fbfcfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.11.1](https://github.com/cachekit-io/cachekit-py/compare/v0.11.0...v0.11.1) (2026-06-26) + + +### Bug Fixes + +* re-read settings when CACHEKIT_MASTER_KEY appears + correct missing-key env var name ([#200](https://github.com/cachekit-io/cachekit-py/issues/200)) ([12c9fff](https://github.com/cachekit-io/cachekit-py/commit/12c9fffc5ac9249640610050160b1fa03501960d)) + ## [0.11.0](https://github.com/cachekit-io/cachekit-py/compare/v0.10.1...v0.11.0) (2026-06-20) diff --git a/Cargo.lock b/Cargo.lock index b0236e4..df8ed06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -271,7 +271,7 @@ dependencies = [ [[package]] name = "cachekit-rs" -version = "0.11.0" +version = "0.11.1" dependencies = [ "cachekit-core", "criterion", diff --git a/pyproject.toml b/pyproject.toml index da16680..3dbb215 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "cachekit" -version = "0.11.0" +version = "0.11.1" description = "Production-ready Redis caching for Python with intelligent reliability features and Rust-powered performance" readme = "README.md" license = {text = "MIT"} diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0f754b4..dcdaf5e 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cachekit-rs" -version = "0.11.0" +version = "0.11.1" edition = "2021" authors = ["cachekit Contributors"] description = "High-performance storage engine for caching with compression and encryption" diff --git a/src/cachekit/__init__.py b/src/cachekit/__init__.py index 288fcd4..5489999 100644 --- a/src/cachekit/__init__.py +++ b/src/cachekit/__init__.py @@ -68,7 +68,7 @@ def custom_function(): ``` """ -__version__ = "0.11.0" +__version__ = "0.11.1" from collections.abc import Callable from typing import Any, TypeVar diff --git a/uv.lock b/uv.lock index 6cb86b3..9918949 100644 --- a/uv.lock +++ b/uv.lock @@ -230,7 +230,7 @@ filecache = [ [[package]] name = "cachekit" -version = "0.11.0" +version = "0.11.1" source = { editable = "." } dependencies = [ { name = "blake3" },