Release 2.14

Refs #127, #130
This commit is contained in:
Simon Willison 2020-08-01 13:58:47 -07:00
commit a8b922bcb9
2 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,15 @@
Changelog
===========
.. _v2_14:
2.14 (2020-08-01)
-----------------
- The :ref:`insert-files command <cli_insert_files>` can now read from standard input: ``cat dog.jpg | sqlite-utils insert-files dogs.db pics - --name=dog.jpg``. (`#127 <https://github.com/simonw/sqlite-utils/issues/127>`__)
- You can now specify a full-text search tokenizer using the new ``tokenize=`` parameter to :ref:`enable_fts() <python_api_fts>`. This means you can enable Porter stemming on a table by running ``db["articles"].enable_fts(["headline", "body"], tokenize="porter")``. (`#130 <https://github.com/simonw/sqlite-utils/issues/130>`__)
- You can also set a custom tokenizer using the :ref:`sqlite-utils enable-fts <cli_fts>` CLI command, via the new ``--tokenize`` option.
.. _v2_13:
2.13 (2020-07-29)

View file

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