File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " tidesdb"
7- version = " 0.9.6 "
7+ version = " 0.9.7 "
88description = " Official Python bindings for TidesDB - A high-performance embedded key-value storage engine"
99readme = " README.md"
1010requires-python = " >=3.10"
Original file line number Diff line number Diff line change 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" ,
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]
You can’t perform that action at this time.
0 commit comments