Skip to content

Commit

Permalink
SQLite release bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbinns committed Dec 8, 2024
1 parent 8ded9d2 commit a58a10f
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

SQLITEVERSION=3.47.1
SQLITEVERSION=3.47.2
APSWSUFFIX=.0

RELEASEDATE="25 November 2024"
RELEASEDATE="8 December 2024"

VERSION=$(SQLITEVERSION)$(APSWSUFFIX)
VERDIR=apsw-$(VERSION)
Expand Down
1 change: 1 addition & 0 deletions checksums
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# more peace of mind because the SQLite releases are not signed in any
# way.

https://sqlite.org/2024/sqlite-autoconf-3470200.tar.gz 3328600 f1b2ee412c28d7472bc95ba996368d6f0cdcf00362affdadb27ed286c179540b 52cd4a2304b627abbabe1a438ba853d0f6edb8e2774fcb5773c7af11077afe94
https://sqlite.org/2024/sqlite-autoconf-3470100.tar.gz 3328564 416a6f45bf2cacd494b208fdee1beda509abda951d5f47bc4f2792126f01b452 c6c1756fbeb1e34e0ee31f8609bfc1fd4630b3faadde71a28ad3a55df259d854
https://sqlite.org/2024/sqlite-autoconf-3470000.tar.gz 3324599 83eb21a6f6a649f506df8bd3aab85a08f7556ceed5dbd8dea743ea003fc3a957 a9166e017ef8bc33379b1c2eed346bf43cded6d40df0feb984a33fba1a828ba9

Expand Down
4 changes: 2 additions & 2 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ history <https://devguide.python.org/versions/>`__.
APSW changes by version
-----------------------

next
====
3.47.2.0
========

Added :func:`apsw.ext.page_usage_to_svg` which shows database usage as
SVG (`example <_static/samples/chinook.svg>`). Available as shell
Expand Down
4 changes: 2 additions & 2 deletions doc/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ apsw
A terminal interface to the APSW SQLite shell modelled after the SQLite shell
-----------------------------------------------------------------------------

:version: apsw 3.47.1.0
:date: 25 November 2024
:version: apsw 3.47.2.0
:date: 8 December 2024
:manual section: 1
:manual group: General Commands Manual

Expand Down
12 changes: 6 additions & 6 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ edit the :file:`setup.apsw` file inside.

.. downloads-begin
* `apsw-3.47.1.0.zip
<https://github.com/rogerbinns/apsw/releases/download/3.47.1.0/apsw-3.47.1.0.zip>`__
* `apsw-3.47.2.0.zip
<https://github.com/rogerbinns/apsw/releases/download/3.47.2.0/apsw-3.47.2.0.zip>`__
(Source, includes this HTML Help)

* `apsw-3.47.1.0.cosign-bundle
<https://github.com/rogerbinns/apsw/releases/download/3.47.1.0/apsw-3.47.1.0.cosign-bundle>`__
* `apsw-3.47.2.0.cosign-bundle
<https://github.com/rogerbinns/apsw/releases/download/3.47.2.0/apsw-3.47.2.0.cosign-bundle>`__
cosign signature

.. downloads-end
Expand Down Expand Up @@ -120,8 +120,8 @@ Verify
.. code-block:: console
$ cosign verify-blob apsw-3.47.1.0.zip \
--bundle apsw-3.47.1.0.cosign-bundle \
$ cosign verify-blob apsw-3.47.2.0.zip \
--bundle apsw-3.47.2.0.cosign-bundle \
[email protected] \
--certificate-oidc-issuer=https://github.com/login/oauth
Verified OK
Expand Down
2 changes: 1 addition & 1 deletion src/apswversion.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define APSW_VERSION "3.47.1.0"
#define APSW_VERSION "3.47.2.0"
1 change: 1 addition & 0 deletions tools/checksums.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import setup

sqlitevers = (
"3470200",
"3470100",
"3470000",
"3460100",
Expand Down
2 changes: 1 addition & 1 deletion tools/megatest.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def cmp(a, b):
"system",
)

SQLITEVERS = ("3.47.1",)
SQLITEVERS = ("3.47.1", "3.47.2")

BITS = (64, 32)

Expand Down

0 comments on commit a58a10f

Please sign in to comment.