Skip to content

Commit

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

SQLITEVERSION=3.45.0
SQLITEVERSION=3.45.1
APSWSUFFIX=.0

RELEASEDATE="17 January 2024"
RELEASEDATE="31 January 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-3450100.tar.gz 3232682 cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a a54395aa2cf76b5b973fa420715b6108afedc4d8c0209c763fd2c1b517f8ad9f
https://sqlite.org/2024/sqlite-autoconf-3450000.tar.gz 3231697 72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436 9fc2a78088875ae7c112957d58ccc52b1a0a4afa34ac669290be42f352b1aa76

https://sqlite.org/2023/sqlite-autoconf-3440200.tar.gz 3204841 1c6719a148bc41cf0f2bbbe3926d7ce3f5ca09d878f1246fcc20767b175bb407 6c427f0547e2f7babe636b748dd5d5a1f2f31601adadef7e2805e7d1f7171861
Expand Down
5 changes: 5 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ history <https://devguide.python.org/versions/>`__.
APSW changes by version
-----------------------

3.45.1.0
========

No APSW changes.

3.45.0.0
========

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

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

* `apsw-3.45.0.0-sigs.zip
<https://github.com/rogerbinns/apsw/releases/download/3.45.0.0/apsw-3.45.0.0-sigs.zip>`__
* `apsw-3.45.1.0-sigs.zip
<https://github.com/rogerbinns/apsw/releases/download/3.45.1.0/apsw-3.45.1.0-sigs.zip>`__
GPG signatures for all files

.. downloads-end
Expand All @@ -104,7 +104,7 @@ Verify

.. code-block:: console
$ gpg --verify apsw-3.45.0.0.zip.asc
$ gpg --verify apsw-3.45.1.0.zip.asc
gpg: Signature made ... date ... using DSA key ID 0DFBD904
gpg: Good signature from "Roger Binns <[email protected]>"
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.45.0.0"
#define APSW_VERSION "3.45.1.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 = (
'3450100',
'3450000',
'3440200',
'3440100',
Expand Down
4 changes: 2 additions & 2 deletions tools/megatest.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def cmp(a, b):

# Default versions we support
PYVERS = (
'3.13.0a2',
'3.13.0a3',
'3.12.1',
'3.11.7',
'3.10.13',
Expand All @@ -214,7 +214,7 @@ def cmp(a, b):
'system',
)

SQLITEVERS = ('3.44.0', '3.44.1', '3.44.2', '3.45.0')
SQLITEVERS = ('3.44.0', '3.44.1', '3.44.2', '3.45.0', '3.45.1')

BITS = (64, 32)

Expand Down

0 comments on commit abeffa1

Please sign in to comment.