Skip to content

Commit dea6f1d

Browse files
committed
bump version to 0.5.4
1 parent 346e5b8 commit dea6f1d

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to the SochDB Python SDK will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.4] - 2026-02-15
9+
10+
### Changed
11+
12+
- Version bump aligned with SochDB core 0.5.0
13+
814
## [0.5.3] - 2026-02-10
915

1016
### Changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# SochDB Python SDK
22

3-
> **📢 Note:** This project has been renamed from **ToonDB** to **SochDB**. All references, packages, and APIs have been updated accordingly. If you're upgrading from ToonDB, please update your imports from `toondb` to `sochdb`.
4-
53
**Dual-mode architecture: Embedded (FFI) + Server (gRPC/IPC)**
64
Choose the deployment mode that fits your needs.
75

pyproject.toml

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

55
[project]
66
name = "sochdb"
7-
version = "0.5.3"
7+
version = "0.5.4"
88
description = "SochDB is an AI-native database with token-optimized output, O(|path|) lookups, built-in vector search, and durable transactions."
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

src/sochdb/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
SochDB Python SDK v0.5.3
2+
SochDB Python SDK v0.5.4
33
44
Dual-mode architecture: Embedded (FFI) + Server (gRPC/IPC)
55
@@ -32,7 +32,7 @@
3232
client.put_kv("key", b"value")
3333
"""
3434

35-
__version__ = "0.5.3"
35+
__version__ = "0.5.4"
3636

3737
# Embedded mode (FFI)
3838
from .database import Database, Transaction, IsolationLevel

0 commit comments

Comments
 (0)