File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<!-- do not remove -->
4
4
5
+ ## 0.0.3
6
+
7
+ ### New Features
8
+
9
+ - Vendor in sqlite-utils and remove dependency ([ #7 ] ( https://github.com/AnswerDotAI/fastlite/issues/7 ) )
10
+ - Add ` ids_and_rows_where ` and use it to work around sqlite-utils rowid bug ([ #6 ] ( https://github.com/AnswerDotAI/fastlite/issues/6 ) )
11
+ - Add ` get_last ` and use it to set ` last_pk ` correctly and return updated row ([ #5 ] ( https://github.com/AnswerDotAI/fastlite/issues/5 ) )
12
+
13
+
5
14
## 0.0.2
6
15
7
16
### New Features
Original file line number Diff line number Diff line change 5
5
6
6
opt_bool = Union [bool , Default , None ]
7
7
8
+ def database (path , wal = True ):
9
+ path = Path (path )
10
+ path .parent .mkdir (exist_ok = True )
11
+ db = Database (path )
12
+ if wal : db .enable_wal ()
13
+ return db
14
+
8
15
@patch
9
16
def xtra (self :Table , ** kwargs ):
10
17
"Set `xtra_id`"
You can’t perform that action at this time.
0 commit comments