mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
parent
0789bad8f7
commit
43eae8b193
2 changed files with 10 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
import io
|
||||
import os
|
||||
|
||||
VERSION = "2.22"
|
||||
VERSION = "2.23"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue