Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Prepare for version 2.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
smithsz committed Jun 13, 2018
1 parent 46a20ab commit 6f5edd9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Unreleased
# 2.9.0 (2018-06-13)

- [NEW] Added functionality to test if a key is in a database as in `key in db`, overriding dict `__contains__` and checking in the remote database.
- [NEW] Moved `create_query_index` and other query related methods to `CouchDatabase` as the `_index`/`_find` API is available in CouchDB 2.x.
- [NEW] Support IAM authentication in replication documents.
- [FIXED] Case where `Document` context manager would throw instead of creating a new document if no `_id` was provided.
- [IMPROVED] Added support for IAM API key in `cloudant_bluemix` method.
- [IMPROVED] Verified library operation on Python 3.6.3.
- [IMPROVED] Shortened length of client URLs by removing username and password.
- [FIXED] Case where `Document` context manager would throw instead of creating a new document if no `_id` was provided.
- [IMPROVED] Verified library operation on Python 3.6.3.

# 2.8.1 (2018-02-16)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.2-SNAPSHOT
2.9.0
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.8.2-SNAPSHOT'
version = '2.9.0'
# The full version, including alpha/beta/rc tags.
release = '2.8.2-SNAPSHOT'
release = '2.9.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 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.8.2-SNAPSHOT'
__version__ = '2.9.0'

# pylint: disable=wrong-import-position
import contextlib
Expand Down

0 comments on commit 6f5edd9

Please sign in to comment.