Skip to content

Commit e102103

Browse files
committed
Release 1.8
1 parent 0747dab commit e102103

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

docs/changelog.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
===========
44

5+
.. _v1_8:
6+
7+
1.8 (2019-07-28)
8+
----------------
9+
10+
- ``table.update(pk, values)`` method: :ref:`python_api_update` (`#35 <https://github.com/simonw/sqlite-utils/issues/35>`__)
11+
512
.. _v1_7_1:
613

714
1.7.1 (2019-07-28)
@@ -38,9 +45,9 @@ Support for lookup tables.
3845
- Support for compound primary keys (`#36 <https://github.com/simonw/sqlite-utils/issues/36>`__)
3946

4047
- Configure these using the CLI tool by passing ``--pk`` multiple times
41-
- In Python, pass a tuple of columns to the ``pk=(..., ...)`` argument: see :ref:`python_api_compound_primary_keys`
48+
- In Python, pass a tuple of columns to the ``pk=(..., ...)`` argument: :ref:`python_api_compound_primary_keys`
4249

43-
- New ``table.get()`` method for retrieving a record by its primary key (`#39 <https://github.com/simonw/sqlite-utils/issues/39>`__) - :ref:`documentation <python_api_get>`
50+
- New ``table.get()`` method for retrieving a record by its primary key: :ref:`python_api_get` (`#39 <https://github.com/simonw/sqlite-utils/issues/39>`__)
4451

4552
.. _v1_4_1:
4653

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
import os
44

5-
VERSION = "1.7.1"
5+
VERSION = "1.8"
66

77

88
def get_long_description():

0 commit comments

Comments
 (0)