From 06de4c853ce33c895fb6d78c09dc3a2f54d2b3a5 Mon Sep 17 00:00:00 2001 From: Sam Smith Date: Thu, 26 Oct 2017 13:49:38 +0100 Subject: [PATCH] Prepare for 2.7.0 release --- CHANGES.rst | 4 ++-- docs/conf.py | 4 ++-- setup.py | 2 +- src/cloudant/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d429d65e..6010c3a1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,5 @@ -Unreleased -========== +2.7.0 (2017-10-31) +================== - [NEW] Added API for upcoming Bluemix Identity and Access Management support for Cloudant on Bluemix. Note: IAM API key support is not yet enabled in the service. - [NEW] Added HTTP basic authentication support. - [NEW] Added ``Result.all()`` convenience method. diff --git a/docs/conf.py b/docs/conf.py index d993fc17..42782096 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = '2.6.1.dev' +version = '2.7.0' # The full version, including alpha/beta/rc tags. -release = '2.6.1.dev' +release = '2.7.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index d381c2a5..9bf6529f 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ 'include_package_data': True, 'install_requires': requirements, 'name': 'cloudant', - 'version': '2.6.1.dev', + 'version': '2.7.0', 'author': 'IBM', 'author_email': 'alfinkel@us.ibm.com', 'url': 'https://github.com/cloudant/python-cloudant', diff --git a/src/cloudant/__init__.py b/src/cloudant/__init__.py index 7b1ba55a..3e9c19d4 100644 --- a/src/cloudant/__init__.py +++ b/src/cloudant/__init__.py @@ -15,7 +15,7 @@ """ Cloudant / CouchDB Python client library API package """ -__version__ = '2.6.1.dev' +__version__ = '2.7.0' # pylint: disable=wrong-import-position import contextlib