From ef112ffc94e157b2152ebc4e01ab750570f447e8 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 14 Jul 2019 21:34:49 -0700 Subject: [PATCH] Release 1.5 --- docs/changelog.rst | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index dca16c9..8c49b60 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,18 @@ Changelog =========== +.. _v1_5: + +1.5 (2019-07-14) +---------------- + +- Support for compound primary keys (`#36 `__) + + - Configure these using the CLI tool by passing ``--pk`` multiple times + - In Python, pass a tuple of columns to the ``pk=(..., ...)`` argument: see :ref:`python_api_compound_primary_keys` + +- New ``table.get()`` method for retrieving a record by its primary key (`#39 `__) - :ref:`documentation ` + .. _v1_4_1: 1.4.1 (2019-07-14) diff --git a/setup.py b/setup.py index 368522c..077bb20 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "1.4.1" +VERSION = "1.5" def get_long_description():