From 0f9cd5f869107defd58e3537ae3ced486b570304 Mon Sep 17 00:00:00 2001 From: Rich Ellis Date: Fri, 16 Feb 2018 10:15:32 +0000 Subject: [PATCH 1/2] Added VERSION file to manifest --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index f9bd1455..96ebb5e1 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1 @@ -include requirements.txt +include requirements.txt VERSION From 33622086f7cce5ace48fc994717a53ae6f76975e Mon Sep 17 00:00:00 2001 From: Rich Ellis Date: Fri, 16 Feb 2018 10:21:19 +0000 Subject: [PATCH 2/2] Prepared for version 2.8.1 release --- CHANGES.md | 4 ++++ VERSION | 2 +- docs/conf.py | 4 ++-- src/cloudant/__init__.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d7fe0645..8a904e30 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# 2.8.1 (2018-02-16) + +- [FIXED] Installation failures of 2.8.0 caused by missing VERSION file in distribution. + # 2.8.0 (2018-02-15) - [NEW] Added support for `/_search_disk_size` endpoint which retrieves disk size information for a specific search index. diff --git a/VERSION b/VERSION index f56f5bc1..dbe59006 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.8.1-SNAPSHOT +2.8.1 diff --git a/docs/conf.py b/docs/conf.py index 7ec4258f..76e07274 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,9 +58,9 @@ # built documents. # # The short X.Y version. -version = '2.8.1-SNAPSHOT' +version = '2.8.1' # The full version, including alpha/beta/rc tags. -release = '2.8.1-SNAPSHOT' +release = '2.8.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/cloudant/__init__.py b/src/cloudant/__init__.py index 4836de09..3fab4840 100644 --- a/src/cloudant/__init__.py +++ b/src/cloudant/__init__.py @@ -15,7 +15,7 @@ """ Cloudant / CouchDB Python client library API package """ -__version__ = '2.8.1-SNAPSHOT' +__version__ = '2.8.1' # pylint: disable=wrong-import-position import contextlib