Skip to content

Commit

Permalink
Merge pull request #113 from rhashimoto/sqlite-3.43.1
Browse files Browse the repository at this point in the history
Update SQLite to 3.43.1.
  • Loading branch information
rhashimoto authored Sep 13, 2023
2 parents 122c46e + cef3344 commit a856e82
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# dependencies

SQLITE_AMALGAMATION = sqlite-amalgamation-3420000
SQLITE_AMALGAMATION = sqlite-amalgamation-3430100
SQLITE_AMALGAMATION_ZIP_URL = https://www.sqlite.org/2023/${SQLITE_AMALGAMATION}.zip
SQLITE_AMALGAMATION_ZIP_SHA3 = 436747dc8090d015b9869b96f5837f745e852d2ce73fd77410ed76ee51107a1f
SQLITE_AMALGAMATION_ZIP_SHA3 = 2110f85a90033016f5b5691812448e8dfa606fe407f4b2ebfec66dda2968fe3c

EXTENSION_FUNCTIONS = extension-functions.c
EXTENSION_FUNCTIONS_URL = https://www.sqlite.org/contrib/download/extension-functions.c?get=25
Expand Down
Binary file modified dist/wa-sqlite-async.wasm
Binary file not shown.
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.4",
"version": "0.9.5",
"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.42.0';
const LIBVERSION = '3.43.1';
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 a856e82

Please sign in to comment.