Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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': '[email protected]',
'url': 'https://github.com/cloudant/python-cloudant',
Expand Down
2 changes: 1 addition & 1 deletion src/cloudant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down