Skip to content

Commit e401d26

Browse files
committed
Update SQLite to 3.44.0.
1 parent db095ed commit e401d26

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# dependencies
22

3-
SQLITE_AMALGAMATION = sqlite-amalgamation-3430100
3+
SQLITE_AMALGAMATION = sqlite-amalgamation-3440000
44
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2023/${SQLITE_AMALGAMATION}.zip
5-
SQLITE_AMALGAMATION_ZIP_SHA3 = 2110f85a90033016f5b5691812448e8dfa606fe407f4b2ebfec66dda2968fe3c
5+
SQLITE_AMALGAMATION_ZIP_SHA3 = 91b5884ad3dd634f84a0096751d6c36812542e1e0042ad7b2ba059e639921d7e
66

77
EXTENSION_FUNCTIONS = extension-functions.c
88
EXTENSION_FUNCTIONS_URL = https://www.sqlite.org/contrib/download/extension-functions.c?get=25

dist/wa-sqlite-async.wasm

10.8 KB
Binary file not shown.

dist/wa-sqlite.wasm

6.02 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.8",
3+
"version": "0.9.9",
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.43.1';
5+
const LIBVERSION = '3.44.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)