diff --git a/docs/changelog.rst b/docs/changelog.rst index 8f4abb4c0..018d59c16 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 `__) +- ``sqlite-utils insert`` now displays a progress bar for CSV or TSV imports. (`#173 `__) +- New ``@db.register_function(deterministic=True)`` option for registering deterministic SQLite functions in Python 3.8 or higher. (`#191 `__) + .. _v2_22: 2.22 (2020-10-16) diff --git a/setup.py b/setup.py index 405e6f326..304f69c4d 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "2.22" +VERSION = "2.23" def get_long_description():