Release 3.24

Refs ##397, #398, #401, #403, #404, #405, #407
This commit is contained in:
Simon Willison 2022-02-15 17:39:13 -08:00
commit 757f103ae2
2 changed files with 16 additions and 1 deletions

View file

@ -2,6 +2,21 @@
Changelog
===========
.. _v3_24:
3.24 (2022-02-15)
-----------------
- SpatiaLite helpers for the ``sqlite-utils`` command-line tool - thanks, Chris Amico. (:issue:`398`)
- :ref:`sqlite-utils create-database <cli_create_database>` ``--init-spatialite`` option for initializing SpatiaLite on a newly created database.
- :ref:`sqlite-utils add-geometry-column <cli_spatialite>` command for adding geometry columns.
- :ref:`sqlite-utils create-spatial-index <cli_spatialite_indexes>` command for adding spatial indexes.
- ``db[table].create(..., if_not_exists=True)`` option for :ref:`creating a table <python_api_explicit_create>` only if it does not already exist. (:issue:`397`)
- ``Database(memory_name="my_shared_database")`` parameter for creating a :ref:`named in-memory database <python_api_connect>` that can be shared between multiple connections. (:issue:`405`)
- Documentation now describes :ref:`how to add a primary key to a rowid table <cli_transform_table_add_primary_key_to_rowid>` using ``sqlite-utils transform``. (:issue:`403`)
.. _v3_23:
3.23 (2022-02-03)

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import io
import os
VERSION = "3.23"
VERSION = "3.24"
def get_long_description():