Skip to content

Commit

Permalink
SQLite Version 3.47.0 (2024-10-21)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvilsmeier committed Oct 22, 2024
1 parent ab49a11 commit e7dd997
Show file tree
Hide file tree
Showing 5 changed files with 5,701 additions and 2,789 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ Changelog

See version in src/util.h

### v1.1.36

- SQLite Version 3.47.0 (2024-10-21)

### v1.1.35

- SQLite Version 3.46.1 (2024-08-13)
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.46.1")==0, "wrong sqlite_version %s", sqlite_version);
ASSERT(strcmp(sqlite_version, "3.47.0")==0, "wrong sqlite_version %s", sqlite_version);
// cleanup
dbuf_free(req);
dbuf_free(resp);
Expand Down
Loading

0 comments on commit e7dd997

Please sign in to comment.