diff --git a/embed/README.md b/embed/README.md index ab23672..b826b1c 100644 --- a/embed/README.md +++ b/embed/README.md @@ -1,6 +1,6 @@ # Embeddable WASM build of SQLite -This folder includes an embeddable WASM build of SQLite 3.41.2 for use with +This folder includes an embeddable WASM build of SQLite 3.42.0 for use with [`github.com/ncruces/go-sqlite3`](https://pkg.go.dev/github.com/ncruces/go-sqlite3). The following optional features are compiled in: diff --git a/sqlite3/download.sh b/sqlite3/download.sh index 6106f50..20077d8 100755 --- a/sqlite3/download.sh +++ b/sqlite3/download.sh @@ -3,29 +3,29 @@ set -euo pipefail cd -P -- "$(dirname -- "$0")" -curl -#OL "https://sqlite.org/2023/sqlite-amalgamation-3410200.zip" +curl -#OL "https://sqlite.org/2023/sqlite-amalgamation-3420000.zip" unzip -d . sqlite-amalgamation-*.zip mv sqlite-amalgamation-*/sqlite3* . rm -rf sqlite-amalgamation-* cd ext/ -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/ext/misc/decimal.c" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/ext/misc/uint.c" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/ext/misc/uuid.c" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/ext/misc/base64.c" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/ext/misc/regexp.c" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/ext/misc/series.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/ext/misc/decimal.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/ext/misc/uint.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/ext/misc/uuid.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/ext/misc/base64.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/ext/misc/regexp.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/ext/misc/series.c" cd ~- cd ../internal/vfs/tests/mptest/testdata/ -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/mptest/mptest.c" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/mptest/config01.test" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/mptest/config02.test" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/mptest/crash01.test" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/mptest/crash02.subtest" -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/mptest/multiwrite01.test" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/mptest/mptest.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/mptest/config01.test" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/mptest/config02.test" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/mptest/crash01.test" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/mptest/crash02.subtest" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/mptest/multiwrite01.test" cd ~- cd ../internal/vfs/tests/speedtest1/testdata/ -curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.41.2/test/speedtest1.c" +curl -#OL "https://github.com/sqlite/sqlite/raw/version-3.42.0/test/speedtest1.c" cd ~- \ No newline at end of file