Skip to content

Commit 6114017

Browse files
authored
Merge pull request #51 from tidesdb/0-9-7
fix cconfig struct order, addition of unified memtable, object store …
2 parents e86ff4a + eeac5a6 commit 6114017

4 files changed

Lines changed: 426 additions & 9 deletions

File tree

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 = "tidesdb"
7-
version = "0.9.6"
7+
version = "0.9.7"
88
description = "Official Python bindings for TidesDB - A high-performance embedded key-value storage engine"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/tidesdb/__init__.py

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,23 @@
2929
CommitOp,
3030
COMPARATOR_FUNC,
3131
COMMIT_HOOK_FUNC,
32+
TDB_SUCCESS,
33+
TDB_ERR_MEMORY,
34+
TDB_ERR_INVALID_ARGS,
35+
TDB_ERR_NOT_FOUND,
36+
TDB_ERR_IO,
37+
TDB_ERR_CORRUPTION,
38+
TDB_ERR_EXISTS,
39+
TDB_ERR_CONFLICT,
40+
TDB_ERR_TOO_LARGE,
41+
TDB_ERR_MEMORY_LIMIT,
42+
TDB_ERR_INVALID_DB,
43+
TDB_ERR_UNKNOWN,
44+
TDB_ERR_LOCKED,
45+
TDB_ERR_READONLY,
3246
)
3347

34-
__version__ = "0.9.6"
48+
__version__ = "0.9.7"
3549
__all__ = [
3650
"TidesDB",
3751
"Transaction",
@@ -54,4 +68,18 @@
5468
"CommitOp",
5569
"COMPARATOR_FUNC",
5670
"COMMIT_HOOK_FUNC",
71+
"TDB_SUCCESS",
72+
"TDB_ERR_MEMORY",
73+
"TDB_ERR_INVALID_ARGS",
74+
"TDB_ERR_NOT_FOUND",
75+
"TDB_ERR_IO",
76+
"TDB_ERR_CORRUPTION",
77+
"TDB_ERR_EXISTS",
78+
"TDB_ERR_CONFLICT",
79+
"TDB_ERR_TOO_LARGE",
80+
"TDB_ERR_MEMORY_LIMIT",
81+
"TDB_ERR_INVALID_DB",
82+
"TDB_ERR_UNKNOWN",
83+
"TDB_ERR_LOCKED",
84+
"TDB_ERR_READONLY",
5785
]

0 commit comments

Comments
 (0)