diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c8214b7faa02..27dc20320f1f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ CHANGELOG ========= -Next Release (TBD) -================== +1.8.5 +===== * bugfix:Output: Only omit printing response to stdout if the response is an empty dictionary diff --git a/awscli/__init__.py b/awscli/__init__.py index d846af7325cd..e00da97c8ef6 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.8.4' +__version__ = '1.8.5' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 76d1d3ac67ab..7df4da635cb3 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.8' # The full version, including alpha/beta/rc tags. -release = '1.8.4' +release = '1.8.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 3e951c2dbaa7..e0995f475ff1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import awscli -requires = ['botocore==1.2.2', +requires = ['botocore==1.2.3', 'colorama>=0.2.5,<=0.3.3', 'docutils>=0.10', 'rsa>=3.1.2,<=3.1.4']