Skip to content

Commit 757f103

Browse files
committed
Release 3.24
Refs ##397, #398, #401, #403, #404, #405, #407
1 parent 4bc06a2 commit 757f103

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

docs/changelog.rst

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

5+
.. _v3_24:
6+
7+
3.24 (2022-02-15)
8+
-----------------
9+
10+
- SpatiaLite helpers for the ``sqlite-utils`` command-line tool - thanks, Chris Amico. (:issue:`398`)
11+
12+
- :ref:`sqlite-utils create-database <cli_create_database>` ``--init-spatialite`` option for initializing SpatiaLite on a newly created database.
13+
- :ref:`sqlite-utils add-geometry-column <cli_spatialite>` command for adding geometry columns.
14+
- :ref:`sqlite-utils create-spatial-index <cli_spatialite_indexes>` command for adding spatial indexes.
15+
16+
- ``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`)
17+
- ``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`)
18+
- 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`)
19+
520
.. _v3_23:
621

722
3.23 (2022-02-03)

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.23"
5+
VERSION = "3.24"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)