mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
parent
4bc06a2437
commit
757f103ae2
2 changed files with 16 additions and 1 deletions
|
|
@ -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 <cli_create_database>` ``--init-spatialite`` option for initializing SpatiaLite on a newly created database.
|
||||
- :ref:`sqlite-utils add-geometry-column <cli_spatialite>` command for adding geometry columns.
|
||||
- :ref:`sqlite-utils create-spatial-index <cli_spatialite_indexes>` command for adding spatial indexes.
|
||||
|
||||
- ``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`)
|
||||
- ``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`)
|
||||
- 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`)
|
||||
|
||||
.. _v3_23:
|
||||
|
||||
3.23 (2022-02-03)
|
||||
|
|
|
|||
2
setup.py
2
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():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue