From 5912878d62ef7de6fa3b9274aed8d98243ff5e56 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Wed, 18 Aug 2021 15:36:32 -0700 Subject: [PATCH] Release 3.16 Refs #37, #246, #294, #295, #296, #314, #316 --- docs/changelog.rst | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index ab424ed..7ff467d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 ` could not be used together. (:issue:`295`) +- Various small improvements to :ref:`reference` documentation. + .. _v3_15.1: 3.15.1 (2021-08-10) diff --git a/setup.py b/setup.py index 71d9cd4..6d138b4 100644 --- a/setup.py +++ b/setup.py @@ -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():