mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
parent
c79737bb4f
commit
5912878d62
2 changed files with 13 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
2
setup.py
2
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():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue