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

Commit a0b92b3

Browse files
committed
Prepare version 2.12.0 release.
1 parent 3a535a8 commit a0b92b3

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGES.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
# Unreleased
1+
# 2.12.0 (2019-03-28)
22

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

1214
# 2.11.0 (2019-01-21)
1315

VERSION

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

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '2.11.1-SNAPSHOT'
63+
version = '2.12.0'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '2.11.1-SNAPSHOT'
65+
release = '2.12.0'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# 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.11.1-SNAPSHOT'
18+
__version__ = '2.12.0'
1919

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

0 commit comments

Comments
 (0)