Skip to content

Commit

Permalink
SQLite Version 3.41.0 (2023-02-21)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvilsmeier committed Mar 8, 2023
1 parent daca5b6 commit 30fcb20
Show file tree
Hide file tree
Showing 5 changed files with 2,984 additions and 1,354 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ Changelog
See version in src/util.h


### v1.1.22

- SQLite Version 3.41.0 (2023-02-21)


### v1.1.21

- SQLite Version 3.40.1 (2022-12-28)
Expand Down
2 changes: 1 addition & 1 deletion src/handler_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void test_handler_versions() {
handler_handle(hd, req, resp);
ASSERT0(dbuf_read_bool(resp), "was not ok");
const char *sqlite_version = dbuf_read_string(resp);
ASSERT(strcmp(sqlite_version, "3.40.1")==0, "wrong sqlite_version %s", sqlite_version);
ASSERT(strcmp(sqlite_version, "3.41.0")==0, "wrong sqlite_version %s", sqlite_version);
// cleanup
dbuf_free(req);
dbuf_free(resp);
Expand Down
Loading

0 comments on commit 30fcb20

Please sign in to comment.