Skip to content

Commit 6dbe4f0

Browse files
committed
Upgrade SQLite to 3.46.0.
1 parent 70931a9 commit 6dbe4f0

File tree

7 files changed

+78
-79
lines changed

7 files changed

+78
-79
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# dependencies
2-
SQLITE_VERSION = version-3.44.0
2+
SQLITE_VERSION = version-3.46.0
33
SQLITE_TARBALL_URL = https://www.sqlite.org/src/tarball/sqlite.tar.gz?r=${SQLITE_VERSION}
44

55
EXTENSION_FUNCTIONS = extension-functions.c

dist/wa-sqlite-async.mjs

Lines changed: 38 additions & 39 deletions
Large diffs are not rendered by default.

dist/wa-sqlite-async.wasm

27.3 KB
Binary file not shown.

dist/wa-sqlite.mjs

Lines changed: 37 additions & 37 deletions
Large diffs are not rendered by default.

dist/wa-sqlite.wasm

15 KB
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wa-sqlite",
3-
"version": "0.9.13",
3+
"version": "0.9.14",
44
"type": "module",
55
"main": "src/sqlite-api.js",
66
"types": "src/types/index.d.ts",

test/sqlite-api.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { getSQLite, getSQLiteAsync } from './api-instances.js';
22
import * as SQLite from '../src/sqlite-api.js';
33
import sinon from '../.yarn/unplugged/sinon-npm-15.0.1-115ae39e4c/node_modules/sinon/pkg/sinon-esm.js';
44

5-
const LIBVERSION = '3.44.0';
5+
const LIBVERSION = '3.46.0';
66
const LIBVERSION_NUMBER = (function() {
77
const version = LIBVERSION.split('.');
88
return parseInt(version[0] + version[1].padStart(3, '0') + version[2].padStart(3, '0'));

0 commit comments

Comments
 (0)