From 72fa16b3d9033525ea6a798c99a870db93ece9e6 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 1 Feb 2020 13:59:08 -0800 Subject: [PATCH] Release 2.2 --- docs/changelog.rst | 10 +++++++++- setup.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index fc27dca..5268a7f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 `__). + +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 `__). - .. _v2_0_1: 2.0.1 (2020-01-05) diff --git a/setup.py b/setup.py index 66854c9..9f2b1cd 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "2.1" +VERSION = "2.2" def get_long_description():