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

Commit

Permalink
Merge pull request #443 from cloudant/prepare-for-2.12.0-release
Browse files Browse the repository at this point in the history
Prepare version 2.12.0 release.
  • Loading branch information
smithsz authored Mar 28, 2019
2 parents 7c41d38 + a0b92b3 commit 7428512
Showing 4 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Unreleased
# 2.12.0 (2019-03-28)

- [NEW] Added partitioned database support.
- [IMPROVED] Updated `Result` iteration by paginating with views' `startkey` and queries'
`bookmark`.
- [FIXED] Bug where document context manager performed remote save despite uncaught exceptions being
raised inside `with` block.
- [FIXED] Fixed parameter type of `selector` in docstring.
- [IMPROVED] Updated `Getting started` section with a `get_query_result` example.
- [FIXED] Removed internal `Document._document_id` property to allow a safe use of dict's methods.
- [IMPROVED] Performance of `Result` iteration by releasing result objects immediately after they
are returned to the client.
- [IMPROVED] Updated `Getting started` section with a `get_query_result` example.
- [IMPROVED] Updated `Result` iteration by paginating with views' `startkey` and queries'
`bookmark`.

# 2.11.0 (2019-01-21)

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.11.1-SNAPSHOT
2.12.0
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -60,9 +60,9 @@
# built documents.
#
# The short X.Y version.
version = '2.11.1-SNAPSHOT'
version = '2.12.0'
# The full version, including alpha/beta/rc tags.
release = '2.11.1-SNAPSHOT'
release = '2.12.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2 changes: 1 addition & 1 deletion src/cloudant/__init__.py
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
"""
Cloudant / CouchDB Python client library API package
"""
__version__ = '2.11.1-SNAPSHOT'
__version__ = '2.12.0'

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

0 comments on commit 7428512

Please sign in to comment.