From 296cf8110da40dfd2528f5431340a79d7e5fdc1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bessenyei=20Bal=C3=A1zs=20Don=C3=A1t?= Date: Mon, 17 Aug 2020 16:09:52 +0200 Subject: [PATCH 1/2] Prepare 2.14.0 release --- CHANGES.md | 2 ++ VERSION | 2 +- docs/conf.py | 4 ++-- src/cloudant/__init__.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0fe2e075..93cc5339 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,7 @@ # UNRELEASED +# 2.14.0 (2020-08-17) + - [FIXED] Set default value for `partitioned` parameter to false when creating a design document. - [FIXED] Corrected setting of `partitioned` flag for `create_query_index` requests. - [FIXED] Added a workaround for installation on Python 2. diff --git a/VERSION b/VERSION index ca3389d9..edcfe40d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.13.1-SNAPSHOT +2.14.0 diff --git a/docs/conf.py b/docs/conf.py index ada059aa..44f27314 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '2.13.1-SNAPSHOT' +version = '2.14.0' # The full version, including alpha/beta/rc tags. -release = '2.13.1-SNAPSHOT' +release = '2.14.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/cloudant/__init__.py b/src/cloudant/__init__.py index 0b162070..193a099c 100644 --- a/src/cloudant/__init__.py +++ b/src/cloudant/__init__.py @@ -15,7 +15,7 @@ """ Cloudant / CouchDB Python client library API package """ -__version__ = '2.13.1-SNAPSHOT' +__version__ = '2.14.0' # pylint: disable=wrong-import-position import contextlib From 3f4ae5d7c3dc79a5b85a2b481b998570c262b0fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bessenyei=20Bal=C3=A1zs=20Don=C3=A1t?= Date: Mon, 17 Aug 2020 16:42:49 +0200 Subject: [PATCH 2/2] Remove "Unreleased" from CHANGES.md --- CHANGES.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 93cc5339..9188a90d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,3 @@ -# UNRELEASED - # 2.14.0 (2020-08-17) - [FIXED] Set default value for `partitioned` parameter to false when creating a design document.