Release 3.16

Refs #37, #246, #294, #295, #296, #314, #316
This commit is contained in:
Simon Willison 2021-08-18 15:36:32 -07:00
commit 5912878d62
2 changed files with 13 additions and 1 deletions

View file

@ -2,6 +2,18 @@
Changelog
===========
.. _v3_16:
3.16 (2021-08-18)
-----------------
- Type signatures added to more methods, including ``table.resolve_foreign_keys()``, ``db.create_table_sql()``, ``db.create_table()`` and ``table.create()``. (:issue:`314`)
- New ``db.quote_fts(value)`` method, see :ref:`python_api_quote_fts` - thanks, Mark Neumann. (:issue:`246`)
- ``table.search()`` now accepts an optional ``quote=True`` parameter. (:issue:`296`)
- CLI command ``sqlite-utils search`` now accepts a ``--quote`` option. (:issue:`296`)
- Fixed bug where ``--no-headers`` and ``--tsv`` options to :ref:`sqlite-utils insert <cli_insert_csv_tsv>` could not be used together. (:issue:`295`)
- Various small improvements to :ref:`reference` documentation.
.. _v3_15.1:
3.15.1 (2021-08-10)

View file

@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import io
import os
VERSION = "3.15.1"
VERSION = "3.16"
def get_long_description():