Release 2.7 - refs #100

This commit is contained in:
Simon Willison 2020-04-17 17:04:50 -07:00
commit f58f746424
2 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,13 @@
Changelog
===========
.. _v2_7:
2.7 (2020-04-17)
----------------
- New ``columns=`` argument for the ``.insert()``, ``.insert_all()``, ``.upsert()`` and ``.upsert_all()`` methods, for over-riding the auto-detected types for columns and specifying additional columns that should be added when the table is created. See :ref:`python_api_custom_columns`. (`#100 <https://github.com/simonw/sqlite-utils/issues/100>`__)
.. _v2_6:
2.6 (2020-04-15)

View file

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