Skip to content

Commit

Permalink
SQLite Version 3.46.0 (2024-05-23)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvilsmeier committed Jun 3, 2024
1 parent 7ec5221 commit d600447
Show file tree
Hide file tree
Showing 5 changed files with 5,188 additions and 3,392 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.34

- SQLite Version 3.46.0 (2024-05-23)

### v1.1.33

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

0 comments on commit d600447

Please sign in to comment.