Skip to content

Commit 4bbd015

Browse files
chore(main): release cachekit 0.1.0 (#4)
* chore(main): release cachekit 0.1.0 * chore: sync Cargo.toml version to 0.1.0 and fix release-please config - Update rust/Cargo.toml version from 0.0.0 to 0.1.0 to match pyproject.toml - Fix release-please extra-files config to use TOML updater with jsonpath --------- Co-authored-by: cachekit-release-bot[bot] <247960786+cachekit-release-bot[bot]@users.noreply.github.com> Co-authored-by: Ray <[email protected]>
1 parent 0898986 commit 4bbd015

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-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.0.0"
2+
".": "0.1.0"
33
}

CHANGELOG.md

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

3+
## 0.1.0 (2025-12-11)
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+
16+
## Changelog
17+
318
All notable changes to this project will be documented in this file.
419

520
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

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.0.0"
7+
version = "0.1.0"
88
description = "Production-ready Redis caching for Python with intelligent reliability features"
99
readme = "README.md"
1010
license = {text = "MIT"}

release-please-config.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,11 @@
2222
"changelog-path": "CHANGELOG.md"
2323
}
2424
},
25-
"extra-files": ["rust/Cargo.toml"]
25+
"extra-files": [
26+
{
27+
"type": "toml",
28+
"path": "rust/Cargo.toml",
29+
"jsonpath": "$.package.version"
30+
}
31+
]
2632
}

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.0.0"
3+
version = "0.1.0"
44
edition = "2024"
55
authors = ["cachekit Contributors"]
66
description = "High-performance storage engine for caching with compression and encryption"

0 commit comments

Comments
 (0)