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

Commit 4d537a3

Browse files
committed
Prepare python-cloudant==2.5.0 release
1 parent fd6abd9 commit 4d537a3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGES.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
2.5.0 (Unreleased)
1+
2.5.0 (2017-07-06)
22
==================
3-
- [FIXED] Fixed crash caused by non-UTF8 chars in ddocs
3+
- [FIXED] Fixed crash caused by non-UTF8 chars in design documents.
44
- [FIXED] Fixed ``TypeError`` when setting revision limits on Python>=3.6.
55
- [FIXED] Fixed the ``exists()`` double check on ``client.py`` and ``database.py``.
66
- [FIXED] Fixed Cloudant exception code 409 with 412 when creating a database that already exists.
7-
- [FIXED] Catch error if ``throw_on_exists`` flag is ``False`` for document create.
7+
- [FIXED] Catch error if ``throw_on_exists`` flag is ``False`` for creating a document.
88
- [FIXED] Fixed /_all_docs call where ``keys`` is an empty list.
99
- [FIXED] Issue where docs with IDs that sorted lower than 0 were not returned when iterating through _all_docs.
1010

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.5.0.dev'
61+
version = '2.5.0'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '2.5.0.dev'
63+
release = '2.5.0'
6464

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
'include_package_data': True,
3030
'install_requires': requirements,
3131
'name': 'cloudant',
32-
'version': '2.5.0.dev',
32+
'version': '2.5.0',
3333
'author': 'IBM',
3434
'author_email': '[email protected]',
3535
'url': 'https://github.com/cloudant/python-cloudant',

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.5.0.dev'
18+
__version__ = '2.5.0'
1919

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

0 commit comments

Comments
 (0)