Skip to content

Commit ff59240

Browse files
committed
SQLite release bump
1 parent 81e5210 commit ff59240

7 files changed

Lines changed: 25 additions & 18 deletions

File tree

Makefile

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

2-
SQLITEVERSION=3.50.0
2+
SQLITEVERSION=3.50.1
33
APSWSUFFIX=.0
44

5-
RELEASEDATE="30 May 2025"
5+
RELEASEDATE="6 June 2025"
66

77
VERSION=$(SQLITEVERSION)$(APSWSUFFIX)
88
VERDIR=apsw-$(VERSION)

checksums

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# more peace of mind because the SQLite releases are not signed in any
99
# way.
1010

11+
https://sqlite.org/2025/sqlite-autoconf-3500100.tar.gz 3172122 00a65114d697cfaa8fe0630281d76fd1b77afcd95cd5e40ec6a02cbbadbfea71 c12e84ba9772391d41644a0a9be37bad25791fc2a9b9395962e5f83f805e877f
1112
https://sqlite.org/2025/sqlite-autoconf-3500000.tar.gz 3171708 3bc776a5f243897415f3b80fb74db3236501d45194c75c7f69012e4ec0128327 aad00919dfb418d71f9394e34ef2bc9abdd65395cb21103b1e01c94d0bf296e8
1213

1314
https://sqlite.org/2025/sqlite-autoconf-3490200.tar.gz 3230309 5c6d8697e8a32a1512a9be5ad2b2e7a891241c334f56f8b0fb4fc6051e1652e8 6527dce15f55cd51af22190c866f28801505ce7faa536893fdc87d9108c1fb1e

doc/changes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ history <https://devguide.python.org/versions/>`__.
1010
APSW changes by version
1111
-----------------------
1212

13+
3.50.1.0
14+
========
15+
16+
No user visible changes.
17+
1318
3.50.0.0
1419
========
1520

doc/cli.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ apsw
66
A terminal interface to the APSW SQLite shell modelled after the SQLite shell
77
-----------------------------------------------------------------------------
88

9-
:version: apsw 3.50.0.0
10-
:date: 30 May 2025
9+
:version: apsw 3.50.1.0
10+
:date: 6 June 2025
1111
:manual section: 1
1212
:manual group: General Commands Manual
1313

doc/install.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,20 +82,20 @@ edit the :file:`setup.apsw` file inside.
8282

8383
.. downloads-begin
8484
85-
* `apsw-3.50.0.0.zip
86-
<https://github.com/rogerbinns/apsw/releases/download/3.50.0.0/apsw-3.50.0.0.zip>`__
85+
* `apsw-3.50.1.0.zip
86+
<https://github.com/rogerbinns/apsw/releases/download/3.50.1.0/apsw-3.50.1.0.zip>`__
8787
(Source as zip, includes this HTML Help)
8888

89-
* `apsw-3.50.0.0.tar.gz
90-
<https://github.com/rogerbinns/apsw/releases/download/3.50.0.0/apsw-3.50.0.0.tar.gz>`__
89+
* `apsw-3.50.1.0.tar.gz
90+
<https://github.com/rogerbinns/apsw/releases/download/3.50.1.0/apsw-3.50.1.0.tar.gz>`__
9191
(Source as tar.gz, includes this HTML Help)
9292

93-
* `apsw-3.50.0.0.zip.cosign-bundle
94-
<https://github.com/rogerbinns/apsw/releases/download/3.50.0.0/apsw-3.50.0.0.zip.cosign-bundle>`__
93+
* `apsw-3.50.1.0.zip.cosign-bundle
94+
<https://github.com/rogerbinns/apsw/releases/download/3.50.1.0/apsw-3.50.1.0.zip.cosign-bundle>`__
9595
cosign signature for zip source
9696

97-
* `apsw-3.50.0.0.tar.gz.cosign-bundle
98-
<https://github.com/rogerbinns/apsw/releases/download/3.50.0.0/apsw-3.50.0.0.tar.gz.cosign-bundle>`__
97+
* `apsw-3.50.1.0.tar.gz.cosign-bundle
98+
<https://github.com/rogerbinns/apsw/releases/download/3.50.1.0/apsw-3.50.1.0.tar.gz.cosign-bundle>`__
9999
cosign signature for tar.gz source
100100

101101
.. downloads-end
@@ -127,18 +127,18 @@ Verify
127127
128128
.. code-block:: console
129129
130-
$ cosign verify-blob apsw-3.50.0.0.zip \
130+
$ cosign verify-blob apsw-3.50.1.0.zip \
131131
--new-bundle-format \
132-
--bundle apsw-3.50.0.0.zip.cosign-bundle \
132+
--bundle apsw-3.50.1.0.zip.cosign-bundle \
133133
--certificate-identity=rogerb@rogerbinns.com \
134134
--certificate-oidc-issuer=https://github.com/login/oauth
135135
Verified OK
136136
137-
$ python3 -m sigstore verify identity apsw-3.50.0.0.zip \
138-
--bundle apsw-3.50.0.0.zip.cosign-bundle \
137+
$ python3 -m sigstore verify identity apsw-3.50.1.0.zip \
138+
--bundle apsw-3.50.1.0.zip.cosign-bundle \
139139
--cert-identity=rogerb@rogerbinns.com \
140140
--cert-oidc-issuer=https://github.com/login/oauth
141-
OK: apsw-3.50.0.0.zip
141+
OK: apsw-3.50.1.0.zip
142142
143143
.. verify-end
144144

src/apswversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define APSW_VERSION "3.50.0.0"
1+
#define APSW_VERSION "3.50.1.0"

tools/checksums.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
import setup
1212

1313
sqlitevers = (
14+
"3500100",
1415
"3500000",
1516
"3490200",
1617
"3490100",

0 commit comments

Comments
 (0)