bump sqlite to 3.40.1

This commit is contained in:
Jacek Sieka 2023-02-21 08:34:28 +01:00
parent 398c6dae03
commit 70b33ad8d3
5 changed files with 26543 additions and 13560 deletions

View File

@ -1,5 +1,5 @@
packageName = "sqlite3_abi"
version = "3.34.0"
version = "3.40.1"
author = "Status Research & Development GmbH"
description = "A wrapper for SQLite"
license = "Apache License 2.0 or MIT"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
#!/bin/bash
MAJOR="${1:-3}"
MINOR="${2:-34}"
PATCH="${3:-0}"
MINOR="${2:-40}"
PATCH="${3:-1}"
VER_INT="$(printf "%d%02d%02d00" "$MAJOR" "$MINOR" "$PATCH")"
@ -10,7 +10,7 @@ VER_INT="$(printf "%d%02d%02d00" "$MAJOR" "$MINOR" "$PATCH")"
cd sqlite3_abi
ZIP="sqlite-amalgamation-$VER_INT.zip"
[ -f "$ZIP" ] || wget https://www.sqlite.org/2020/$ZIP
[ -f "$ZIP" ] || wget https://www.sqlite.org/2022/$ZIP
unzip -jo $ZIP "sqlite-amalgamation-$VER_INT/sqlite3.c" "sqlite-amalgamation-$VER_INT/sqlite3.h"