Skip to content

Commit 5560276

Browse files
chore(main): release cachekit 0.2.0
1 parent 495eea3 commit 5560276

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0"
2+
".": "0.2.0"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/cachekit-io/cachekit-py/compare/cachekit-v0.1.0...cachekit-v0.2.0) (2025-12-12)
4+
5+
6+
### Features
7+
8+
* initial cachekit v0.1.0-alpha oss release ([a0800c3](https://github.com/cachekit-io/cachekit-py/commit/a0800c3869e29a9d3a3fd553ac32be3b6621e434))
9+
10+
11+
### Bug Fixes
12+
13+
* backend=None uses L1 (in-memory) cache which works everywhere. ([7ce81e2](https://github.com/cachekit-io/cachekit-py/commit/7ce81e21d667cf47f935884fdd65adafa39581ba))
14+
* L1-only mode (backend=None) should not attempt Redis connection ([0898986](https://github.com/cachekit-io/cachekit-py/commit/089898659d026a6b15fd8e09e05f6ef77f5e8e66))
15+
316
## 0.1.0 (2025-12-11)
417

518

pyproject.toml

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

55
[project]
66
name = "cachekit"
7-
version = "0.1.0"
7+
version = "0.2.0"
88
description = "Production-ready Redis caching for Python with intelligent reliability features"
99
readme = "README.md"
1010
license = {text = "MIT"}

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cachekit-rs"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55
authors = ["cachekit Contributors"]
66
description = "High-performance storage engine for caching with compression and encryption"

src/cachekit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def custom_function():
6262
```
6363
"""
6464

65-
__version__ = "0.1.0"
65+
__version__ = "0.2.0"
6666

6767
from typing import Any, Callable, TypeVar
6868

0 commit comments

Comments
 (0)