diff --git a/docs/changelog.rst b/docs/changelog.rst index e1663cf..1c51ee5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ Changelog =========== +.. _v1_8: + +1.8 (2019-07-28) +---------------- + +- ``table.update(pk, values)`` method: :ref:`python_api_update` (`#35 `__) + .. _v1_7_1: 1.7.1 (2019-07-28) @@ -38,9 +45,9 @@ Support for lookup tables. - 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` + - In Python, pass a tuple of columns to the ``pk=(..., ...)`` argument: :ref:`python_api_compound_primary_keys` -- New ``table.get()`` method for retrieving a record by its primary key (`#39 `__) - :ref:`documentation ` +- New ``table.get()`` method for retrieving a record by its primary key: :ref:`python_api_get` (`#39 `__) .. _v1_4_1: diff --git a/setup.py b/setup.py index dab276c..559ddb2 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "1.7.1" +VERSION = "1.8" def get_long_description():