From abeffa144f689ca54d9068a79b290c877d830f06 Mon Sep 17 00:00:00 2001 From: Roger Binns Date: Tue, 30 Jan 2024 09:43:51 -0800 Subject: [PATCH] SQLite release bump --- Makefile | 4 ++-- checksums | 1 + doc/changes.rst | 5 +++++ doc/install.rst | 10 +++++----- src/apswversion.h | 2 +- tools/checksums.py | 1 + tools/megatest.py | 4 ++-- 7 files changed, 17 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 87da41d5..38d8cdcc 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/checksums b/checksums index 6746e063..5a5cf3e6 100644 --- a/checksums +++ b/checksums @@ -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 diff --git a/doc/changes.rst b/doc/changes.rst index eed850e6..87f4f51c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -10,6 +10,11 @@ history `__. APSW changes by version ----------------------- +3.45.1.0 +======== + +No APSW changes. + 3.45.0.0 ======== diff --git a/doc/install.rst b/doc/install.rst index 49312653..8f3799fc 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -74,12 +74,12 @@ edit the :file:`setup.apsw` file inside. .. downloads-begin -* `apsw-3.45.0.0.zip - `__ +* `apsw-3.45.1.0.zip + `__ (Source, includes this HTML Help) -* `apsw-3.45.0.0-sigs.zip - `__ +* `apsw-3.45.1.0-sigs.zip + `__ GPG signatures for all files .. downloads-end @@ -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 " diff --git a/src/apswversion.h b/src/apswversion.h index 430ede80..bd398dc6 100644 --- a/src/apswversion.h +++ b/src/apswversion.h @@ -1 +1 @@ -#define APSW_VERSION "3.45.0.0" +#define APSW_VERSION "3.45.1.0" diff --git a/tools/checksums.py b/tools/checksums.py index 1375ca97..6c3152ed 100755 --- a/tools/checksums.py +++ b/tools/checksums.py @@ -11,6 +11,7 @@ import setup sqlitevers = ( + '3450100', '3450000', '3440200', '3440100', diff --git a/tools/megatest.py b/tools/megatest.py index f0c3eb18..ce271ae9 100755 --- a/tools/megatest.py +++ b/tools/megatest.py @@ -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', @@ -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)