Release 2.2

This commit is contained in:
Simon Willison 2020-02-01 13:59:08 -08:00
commit 72fa16b3d9
2 changed files with 10 additions and 2 deletions

View file

@ -2,6 +2,15 @@
Changelog
===========
.. _v2_2:
2.2 (2020-02-01)
----------------
New feature: ``sqlite_utils.suggest_column_types([records])`` returns the suggested column types for a list of records. See :ref:`python_api_suggest_column_types`. (`#81 <https://github.com/simonw/sqlite-utils/issues/81>`__).
This replaces the undocumented ``table.detect_column_types()`` method.
.. _v2_1:
2.1 (2020-01-30)
@ -9,7 +18,6 @@
New feature: ``conversions={...}`` can be passed to the ``.insert()`` family of functions to specify SQL conversions that should be applied to values that are being inserted or updated. See :ref:`python_api_conversions` . (`#77 <https://github.com/simonw/sqlite-utils/issues/73>`__).
.. _v2_0_1:
2.0.1 (2020-01-05)

View file

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