Skip to content

Commit e1f974b

Browse files
authored
Merge pull request #1 from JalonSolov/update_version
sqlite: update to 2025 version
2 parents 2f06cc3 + 91c714d commit e1f974b

File tree

6 files changed

+19871
-9323
lines changed

6 files changed

+19871
-9323
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Purpose:
2-
Make installing, and using SQLite with V as easy and unified as
2+
Make installing, and using SQLite with V as easy and unified as
33
possible on *every platform*, including Windows.
44

55
## Description:
@@ -12,5 +12,5 @@ high-reliability, full-featured, SQL database engine."
1212
This project contains the amalgamated SQLite source, extracted with
1313
the help of the `download.bat` and/or `download.sh` scripts.
1414

15-
The current version of the SQLite amalgamation is
16-
https://www.sqlite.org/2022/sqlite-amalgamation-3380200.zip
15+
The current version of the SQLite amalgamation is
16+
https://sqlite.org/2025/sqlite-amalgamation-3510000.zip

download.bat

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
curl -L https://www.sqlite.org/2024/sqlite-amalgamation-3450300.zip -o sqlite-amalgamation-3450300.zip
1+
curl -L https://sqlite.org/2025/sqlite-amalgamation-3510000.zip -o sqlite-amalgamation-3510000.zip
22

3-
unzip sqlite-amalgamation-3450300.zip
3+
unzip sqlite-amalgamation-3510000.zip
44

5-
del sqlite-amalgamation-3450300.zip
6-
del sqlite-amalgamation-3450300\shell.c
5+
del sqlite-amalgamation-3510000.zip
6+
del sqlite-amalgamation-3510000.zip\shell.c
77

8-
move /y sqlite-amalgamation-3450300\*.* .
9-
rmdir /s /q sqlite-amalgamation-3450300
8+
move /y sqlite-amalgamation-3510000.zip\*.* .
9+
rmdir /s /q sqlite-amalgamation-3510000.zip
1010

1111
dir .

download.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
set -ve
44

5-
AMALGAMA_NAME=sqlite-amalgamation-3450300
5+
AMALGAMA_NAME=sqlite-amalgamation-3510000
66

7-
curl -L https://www.sqlite.org/2024/$AMALGAMA_NAME.zip -o $AMALGAMA_NAME.zip
7+
curl -L https://sqlite.org/2025/$AMALGAMA_NAME.zip -o $AMALGAMA_NAME.zip
88

99
unzip $AMALGAMA_NAME.zip
1010

@@ -15,4 +15,3 @@ mv $AMALGAMA_NAME/* .
1515
rm -rf $AMALGAMA_NAME/
1616

1717
ls -lart .
18-

0 commit comments

Comments
 (0)