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 #307 from cloudant/prepare-2.5.0-release
Browse files Browse the repository at this point in the history
Prepare python-cloudant==2.5.0 release
  • Loading branch information
smithsz authored Jul 6, 2017
2 parents fd6abd9 + 4d537a3 commit 0fbc2e0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
2.5.0 (Unreleased)
2.5.0 (2017-07-06)
==================
- [FIXED] Fixed crash caused by non-UTF8 chars in ddocs
- [FIXED] Fixed crash caused by non-UTF8 chars in design documents.
- [FIXED] Fixed ``TypeError`` when setting revision limits on Python>=3.6.
- [FIXED] Fixed the ``exists()`` double check on ``client.py`` and ``database.py``.
- [FIXED] Fixed Cloudant exception code 409 with 412 when creating a database that already exists.
- [FIXED] Catch error if ``throw_on_exists`` flag is ``False`` for document create.
- [FIXED] Catch error if ``throw_on_exists`` flag is ``False`` for creating a document.
- [FIXED] Fixed /_all_docs call where ``keys`` is an empty list.
- [FIXED] Issue where docs with IDs that sorted lower than 0 were not returned when iterating through _all_docs.

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '2.5.0.dev'
version = '2.5.0'
# The full version, including alpha/beta/rc tags.
release = '2.5.0.dev'
release = '2.5.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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
'include_package_data': True,
'install_requires': requirements,
'name': 'cloudant',
'version': '2.5.0.dev',
'version': '2.5.0',
'author': 'IBM',
'author_email': '[email protected]',
'url': 'https://github.com/cloudant/python-cloudant',
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.5.0.dev'
__version__ = '2.5.0'

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

0 comments on commit 0fbc2e0

Please sign in to comment.