From 47af71f6038327a0aba5ab9bbb7de21ee21924f9 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 16 Oct 2020 12:30:25 -0700 Subject: [PATCH] Release 2.22 Refs #182 #137 #136 #184 #181 --- docs/changelog.rst | 11 +++++++++++ setup.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index bac5431..8f4abb4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,17 @@ Changelog =========== +.. _v2_22: + +2.22 (2020-10-16) +----------------- + +- New ``--encoding`` option for processing CSV and TSV files that use a non-utf-8 encoding, for both the ``insert`` and ``update`` commands. (`#182 `__) +- The ``--load-extension`` option is now available to many more commands. (`#137 `__) +- ``--load-extension=spatialite`` can be used to load SpatiaLite from common installation locations, if it is available. (`#136 `__) +- Tests now also run against Python 3.9. (`#184 `__) +- Passing ``pk=["id"]`` now has the same effect as passing ``pk="id"``. (`#181 `__) + .. _v2_21: 2.21 (2020-09-24) diff --git a/setup.py b/setup.py index 371895a..45fc517 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "2.21" +VERSION = "2.22" def get_long_description():