From 126703706ea153f63e6134ad14e5712e4bbcb8ae Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 20 Nov 2021 20:40:47 -0800 Subject: [PATCH] Release 3.19 Refs #342 --- docs/changelog.rst | 7 +++++++ setup.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 0c8f901e5..a30e7cfc0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ Changelog =========== +.. _v3_19: + +3.19 (2021-11-20) +----------------- + +- The :ref:`table.lookup() method ` 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) diff --git a/setup.py b/setup.py index 820c8715e..719802780 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import io import os -VERSION = "3.19a0" +VERSION = "3.19" def get_long_description():