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

Commit 77faa9c

Browse files
authored
Merge pull request #390 from cloudant/prepare-2.9.0-release
Prepare for version 2.9.0 release
2 parents 46a20ab + 6f5edd9 commit 77faa9c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Unreleased
1+
# 2.9.0 (2018-06-13)
22

33
- [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.
44
- [NEW] Moved `create_query_index` and other query related methods to `CouchDatabase` as the `_index`/`_find` API is available in CouchDB 2.x.
55
- [NEW] Support IAM authentication in replication documents.
6+
- [FIXED] Case where `Document` context manager would throw instead of creating a new document if no `_id` was provided.
67
- [IMPROVED] Added support for IAM API key in `cloudant_bluemix` method.
7-
- [IMPROVED] Verified library operation on Python 3.6.3.
88
- [IMPROVED] Shortened length of client URLs by removing username and password.
9-
- [FIXED] Case where `Document` context manager would throw instead of creating a new document if no `_id` was provided.
9+
- [IMPROVED] Verified library operation on Python 3.6.3.
1010

1111
# 2.8.1 (2018-02-16)
1212

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.2-SNAPSHOT
1+
2.9.0

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '2.8.2-SNAPSHOT'
61+
version = '2.9.0'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '2.8.2-SNAPSHOT'
63+
release = '2.9.0'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

src/cloudant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""
1616
Cloudant / CouchDB Python client library API package
1717
"""
18-
__version__ = '2.8.2-SNAPSHOT'
18+
__version__ = '2.9.0'
1919

2020
# pylint: disable=wrong-import-position
2121
import contextlib

0 commit comments

Comments
 (0)