Release 3.19

Refs #342
This commit is contained in:
Simon Willison 2021-11-20 20:40:47 -08:00
commit 126703706e
2 changed files with 8 additions and 1 deletions

View file

@ -2,6 +2,13 @@
Changelog
===========
.. _v3_19:
3.19 (2021-11-20)
-----------------
- The :ref:`table.lookup() method <python_api_lookup_tables>` now accepts keyword arguments that match those on the underlying ``table.insert()`` method: ``foreign_keys=``, ``column_order=``, ``not_null=``, ``defaults=``, ``extracts=``, ``conversions=`` and ``columns=``. You can also now pass ``pk=`` to specify a different column name to use for the primary key. (:issue:`342`)
.. _v3_18:
3.18 (2021-11-14)

View file

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