From 79541d3a6d71a9f888628686c3236eb0205bad35 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 2 May 2020 09:05:27 -0700 Subject: [PATCH] Release 2.7.2, refs #106 --- docs/changelog.rst | 7 +++++++ docs/python-api.rst | 2 ++ setup.py | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3434b8f..344615e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,13 @@ Changelog =========== +.. _v2_7.2: + +2.7.2 (2020-05-02) +------------------ + +- ``db.create_view(...)`` now has additional parameters ``ignore=True`` or ``replace=True``, see :ref:`python_api_create_view`. (`#106 `__) + .. _v2_7.1: 2.7.1 (2020-05-01) diff --git a/docs/python-api.rst b/docs/python-api.rst index 90c5396..ded39ce 100644 --- a/docs/python-api.rst +++ b/docs/python-api.rst @@ -868,6 +868,8 @@ If you are going to use that ID straight away, you can access it using ``last_pk }, hash_id="id").last_pk # dog_id is now "f501265970505d9825d8d9f590bfab3519fb20b1" +.. _python_api_create_view: + Creating views ============== diff --git a/setup.py b/setup.py index 8e94913..dc18a69 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import io import os -VERSION = "2.7.1" +VERSION = "2.7.2" def get_long_description():