Skip to content

Commit

Permalink
SQLite Version 3.45.3 (2024-04-15)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvilsmeier committed May 1, 2024
1 parent b378453 commit 7ec5221
Show file tree
Hide file tree
Showing 5 changed files with 189 additions and 47 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ Changelog

See version in src/util.h

### v1.1.33

- SQLite Version 3.45.3 (2024-04-15)

### v1.1.32

- SQLite Version 3.45.2 (2024-03-12)
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.45.2")==0, "wrong sqlite_version %s", sqlite_version);
ASSERT(strcmp(sqlite_version, "3.45.3")==0, "wrong sqlite_version %s", sqlite_version);
// cleanup
dbuf_free(req);
dbuf_free(resp);
Expand Down
Loading

0 comments on commit 7ec5221

Please sign in to comment.