Skip to content

Commit

Permalink
SQLite Version 3.46.1 (2024-08-13)
Browse files Browse the repository at this point in the history
  • Loading branch information
cvilsmeier committed Aug 15, 2024
1 parent d600447 commit 7fd3fa2
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 79 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.35

- SQLite Version 3.46.1 (2024-08-13)

### v1.1.34

- SQLite Version 3.46.0 (2024-05-23)
Expand Down
4 changes: 4 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/bin/sh

# fail fast
set -e

# must be in
if [ ! -f "src/main.c" ]; then
echo src/main.c not found - cannot build
exit 1
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.0")==0, "wrong sqlite_version %s", sqlite_version);
ASSERT(strcmp(sqlite_version, "3.46.1")==0, "wrong sqlite_version %s", sqlite_version);
// cleanup
dbuf_free(req);
dbuf_free(resp);
Expand Down
Loading

0 comments on commit 7fd3fa2

Please sign in to comment.