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