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
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)

Expand Down
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
Expand Up @@ -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.
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.11.1-SNAPSHOT'
__version__ = '2.12.0'

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