diff --git a/docs/changelog.rst b/docs/changelog.rst index 7ff467d..6144b33 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,14 @@ Changelog =========== +.. _v3_17: + +3.17 (2021-08-24) +----------------- + +- The :ref:`sqlite-utils memory ` command has a new ``--analyze`` option, which runs the equivalent of the :ref:`analyze-tables ` command directly against the in-memory database created from the incoming CSV or JSON data. (:issue:`320`) +- :ref:`sqlite-utils 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) diff --git a/setup.py b/setup.py index 6d138b4..e12f494 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "3.16" +VERSION = "3.17" def get_long_description():