Skip to content

Commit 088d899

Browse files
committed
Release 3.23
Refs #79, #363, #392, #393, #395, #396
1 parent 20fe3b8 commit 088d899

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

docs/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Changelog
33
===========
44

5+
.. _v3_23:
6+
7+
3.23 (2022-02-03)
8+
-----------------
9+
10+
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>`__)
11+
12+
- ``sqlite_utils.utils.find_spatialite()`` :ref:`finds the location of the SpatiaLite module <python_api_gis_find_spatialite>` on disk.
13+
- ``db.init_spatialite()`` :ref:`initializes SpatiaLite <python_api_gis_init_spatialite>` for the given database.
14+
- ``table.add_geometry_column(...)`` :ref:`adds a geometry column <python_api_gis_add_geometry_column>` to an existing table.
15+
- ``table.create_spatial_index(...)`` :ref:`creates a spatial index <python_api_gis_create_spatial_index>` for a column.
16+
- ``sqlite-utils batch`` now accepts a ``--batch-size`` option. (:issue:`392`)
17+
518
.. _v3_22_1:
619

720
3.22.1 (2022-01-25)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
import os
44

5-
VERSION = "3.22.1"
5+
VERSION = "3.23"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)