Release 3.23

Refs #79, #363, #392, #393, #395, #396
This commit is contained in:
Simon Willison 2022-02-03 22:41:46 -08:00
commit 088d899822
2 changed files with 14 additions and 1 deletions

View file

@ -2,6 +2,19 @@
Changelog
===========
.. _v3_23:
3.23 (2022-02-03)
-----------------
This release introduces four new utility methods for working with `SpatiaLite <https://www.gaia-gis.it/fossil/libspatialite/index>`__. Thanks, Chris Amico. (`#330 <https://github.com/simonw/sqlite-utils/pull/385>`__)
- ``sqlite_utils.utils.find_spatialite()`` :ref:`finds the location of the SpatiaLite module <python_api_gis_find_spatialite>` on disk.
- ``db.init_spatialite()`` :ref:`initializes SpatiaLite <python_api_gis_init_spatialite>` for the given database.
- ``table.add_geometry_column(...)`` :ref:`adds a geometry column <python_api_gis_add_geometry_column>` to an existing table.
- ``table.create_spatial_index(...)`` :ref:`creates a spatial index <python_api_gis_create_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)

View file

@ -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():