Release 3.17

Refs #319, #320
This commit is contained in:
Simon Willison 2021-08-24 16:39:49 -07:00
commit 77c240df56
2 changed files with 9 additions and 1 deletions

View file

@ -2,6 +2,14 @@
Changelog
===========
.. _v3_17:
3.17 (2021-08-24)
-----------------
- The :ref:`sqlite-utils memory <cli_memory>` command has a new ``--analyze`` option, which runs the equivalent of the :ref:`analyze-tables <cli_analyze_tables>` command directly against the in-memory database created from the incoming CSV or JSON data. (:issue:`320`)
- :ref:`sqlite-utils insert-files <cli_insert_files>` now has the ability to insert file contents in to ``TEXT`` columns in addition to the default ``BLOB``. Pass the ``--text`` option or use ``content_text`` as a column specifier. (:issue:`319`)
.. _v3_16:
3.16 (2021-08-18)

View file

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