diff --git a/docs/changelog.rst b/docs/changelog.rst index 7f62c62..a2a024b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 ` ``--init-spatialite`` option for initializing SpatiaLite on a newly created database. + - :ref:`sqlite-utils add-geometry-column ` command for adding geometry columns. + - :ref:`sqlite-utils create-spatial-index ` command for adding spatial indexes. + +- ``db[table].create(..., if_not_exists=True)`` option for :ref:`creating a table ` only if it does not already exist. (:issue:`397`) +- ``Database(memory_name="my_shared_database")`` parameter for creating a :ref:`named in-memory database ` that can be shared between multiple connections. (:issue:`405`) +- Documentation now describes :ref:`how to add a primary key to a rowid table ` using ``sqlite-utils transform``. (:issue:`403`) + .. _v3_23: 3.23 (2022-02-03) diff --git a/setup.py b/setup.py index 6d96533..9db7db1 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.23" +VERSION = "3.24" def get_long_description():