Skip to content

Commit

Permalink
Upgrade SQLite to 3.46.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
shoestringresearch committed Jun 16, 2024
1 parent 70931a9 commit 6dbe4f0
Show file tree
Hide file tree
Showing 7 changed files with 78 additions and 79 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# dependencies
SQLITE_VERSION = version-3.44.0
SQLITE_VERSION = version-3.46.0
SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=${SQLITE_VERSION}

EXTENSION_FUNCTIONS = extension-functions.c
Expand Down
77 changes: 38 additions & 39 deletions dist/wa-sqlite-async.mjs

Large diffs are not rendered by default.

Binary file modified dist/wa-sqlite-async.wasm
Binary file not shown.
74 changes: 37 additions & 37 deletions dist/wa-sqlite.mjs

Large diffs are not rendered by default.

Binary file modified dist/wa-sqlite.wasm
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wa-sqlite",
"version": "0.9.13",
"version": "0.9.14",
"type": "module",
"main": "src/sqlite-api.js",
"types": "src/types/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion test/sqlite-api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { getSQLite, getSQLiteAsync } from './api-instances.js';
import * as SQLite from '../src/sqlite-api.js';
import sinon from '../.yarn/unplugged/sinon-npm-15.0.1-115ae39e4c/node_modules/sinon/pkg/sinon-esm.js';

const LIBVERSION = '3.44.0';
const LIBVERSION = '3.46.0';
const LIBVERSION_NUMBER = (function() {
const version = LIBVERSION.split('.');
return parseInt(version[0] + version[1].padStart(3, '0') + version[2].padStart(3, '0'));
Expand Down

0 comments on commit 6dbe4f0

Please sign in to comment.