Skip to content

Commit 9d6f41b

Browse files
committed
Bump version to 0.4.6
- Auto-detection improvements for library paths - Support for Homebrew, MacPorts, user installations - Better error messages with installation instructions
1 parent 4c082ba commit 9d6f41b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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.4.5"
7+
version = "0.4.6"
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.4.5
2+
SochDB Python SDK v0.4.6
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.4.5"
35+
__version__ = "0.4.6"
3636

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

0 commit comments

Comments
 (0)