Skip to content

Commit fc533bd

Browse files
committed
1. add sqlite.KV: A key-value store using sqlite3. Light-weight sqlitedict.
1 parent 52d7a3c commit fc533bd

File tree

5 files changed

+464
-1
lines changed

5 files changed

+464
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.2.3 (2025-03-07)
2+
1. add `sqlite.KV`: A key-value store using sqlite3. Light-weight `sqlitedict`.
3+
14
### 1.2.2 (2025-03-04)
25
1. Change the default alphabet in `utils.base_encode` to "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", which follows the order of ASCII characters.
36
2. add `utils.SnowFlake` for id generator

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,9 @@ print(morebuiltins.__file__)
253253
16.1 `timer_handler` - Parse arguments and manage systemd timer files.
254254

255255

256+
## 17. morebuiltins.sqlite
257+
258+
256259
<!-- end -->
257260

258261
## cmd utils

doc.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2633,3 +2633,6 @@
26332633
---
26342634

26352635

2636+
## 17. morebuiltins.sqlite
2637+
2638+

morebuiltins/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.2.2"
1+
__version__ = "1.2.3"
22
__all__ = [
33
"morebuiltins.utils",
44
"morebuiltins.date",
@@ -16,4 +16,5 @@
1616
"morebuiltins.snippets.sql",
1717
"morebuiltins.cmd.systemd.service",
1818
"morebuiltins.cmd.systemd.timer",
19+
"morebuiltins.sqlite",
1920
]

0 commit comments

Comments
 (0)