diff --git a/CHANGES.md b/CHANGES.md index 0fe2e075..9188a90d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# 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. 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