Skip to content

Commit

Permalink
SQLite version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerbinns committed Aug 13, 2024
1 parent 417c7b2 commit 4265d52
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 12 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

SQLITEVERSION=3.46.0
APSWSUFFIX=.1
SQLITEVERSION=3.46.1
APSWSUFFIX=.0

RELEASEDATE="17 June 2024"
RELEASEDATE="13 August 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-3460100.tar.gz 3265571 67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071 923f68143dcd9fc0c38778dee253fd6540a91f578173a04ca5adff885d8a8fbb
https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz 3265248 6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc

https://sqlite.org/2024/sqlite-autoconf-3450300.tar.gz 3235957 b2809ca53124c19c60f42bf627736eae011afdcc205bb48270a5ee9a38191531 cc1050780e0266de4d91b31c8deaf4638336908c12c21898e9f1fcae1e2ac303
Expand Down
10 changes: 8 additions & 2 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@ history <https://devguide.python.org/versions/>`__.
APSW changes by version
-----------------------

next
====
3.46.1.0
========

The shell :ref:`dump <shell-cmd-dump>` command outputs the
`application_id
<https://www.sqlite.org/pragma.html#pragma_application_id>`__ in
addition to the `user_version
<https://www.sqlite.org/pragma.html#pragma_user_version>`__.

`PyPI <https://pypi.org/project/apsw/>`__ binary builds for `Python
3.13 now available
<https://github.com/pypa/cibuildwheel/releases/tag/v2.20.0>`__, as
well as `older Python ARM64
<https://github.com/rogerbinns/apsw/pull/530>`__ are available.

3.46.0.1
========

Expand Down
12 changes: 6 additions & 6 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.46.0.1.zip
<https://github.com/rogerbinns/apsw/releases/download/3.46.0.1/apsw-3.46.0.1.zip>`__
* `apsw-3.46.1.0.zip
<https://github.com/rogerbinns/apsw/releases/download/3.46.1.0/apsw-3.46.1.0.zip>`__
(Source, includes this HTML Help)

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

.. downloads-end
Expand Down Expand Up @@ -114,8 +114,8 @@ Verify
.. code-block:: console
$ cosign verify-blob apsw-3.46.0.1.zip \
--bundle apsw-3.46.0.1.cosign-bundle \
$ cosign verify-blob apsw-3.46.1.0.zip \
--bundle apsw-3.46.1.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.46.0.1"
#define APSW_VERSION "3.46.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 = (
'3460100',
'3460000',
'3450300',
'3450200',
Expand Down

0 comments on commit 4265d52

Please sign in to comment.