Release 2.23

Refs #189, #173, #191
This commit is contained in:
Simon Willison 2020-10-28 14:38:10 -07:00
commit 43eae8b193
2 changed files with 10 additions and 1 deletions

View file

@ -2,6 +2,15 @@
Changelog
===========
.. _v2_23:
2.23 (2020-10-28)
-----------------
- ``table.m2m(other_table, records)`` method now takes any iterable, not just a list or tuple. Thanks, Adam Wolf. (`#189 <https://github.com/simonw/sqlite-utils/pull/189>`__)
- ``sqlite-utils insert`` now displays a progress bar for CSV or TSV imports. (`#173 <https://github.com/simonw/sqlite-utils/issues/173>`__)
- New ``@db.register_function(deterministic=True)`` option for registering deterministic SQLite functions in Python 3.8 or higher. (`#191 <https://github.com/simonw/sqlite-utils/issues/191>`__)
.. _v2_22:
2.22 (2020-10-16)

View file

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