diff --git a/docs/changelog.rst b/docs/changelog.rst index f9cca0c..7f62c62 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,19 @@ Changelog =========== +.. _v3_23: + +3.23 (2022-02-03) +----------------- + +This release introduces four new utility methods for working with `SpatiaLite `__. Thanks, Chris Amico. (`#330 `__) + +- ``sqlite_utils.utils.find_spatialite()`` :ref:`finds the location of the SpatiaLite module ` on disk. +- ``db.init_spatialite()`` :ref:`initializes SpatiaLite ` for the given database. +- ``table.add_geometry_column(...)`` :ref:`adds a geometry column ` to an existing table. +- ``table.create_spatial_index(...)`` :ref:`creates a spatial index ` for a column. +- ``sqlite-utils batch`` now accepts a ``--batch-size`` option. (:issue:`392`) + .. _v3_22_1: 3.22.1 (2022-01-25) diff --git a/setup.py b/setup.py index e3a31d4..6d96533 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.22.1" +VERSION = "3.23" def get_long_description():