diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e7f3aab629ba..fe088161c9ec 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,21 @@ CHANGELOG ========= +1.3.24 +====== + +* feature:``aws elasticloadbalancing``: Update to the latest service model. +* bugfix:``aws swf poll-for-decision-task``: Fix issue where + the default paginated response is missing output response keys + (`issue botocore 324 `__) +* bugfix:Connections: Fix issue where connections were hanging + when network issues occurred + `issue botocore 325 `__) +* bugfix:``aws s3/s3api``: Fix issue where Deprecations were being + written to stderr in Python 3.4.1 + `issue botocore 319 `__) + + 1.3.23 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index cadbe8f64311..ce1effded572 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.3.23' +__version__ = '1.3.24' # # 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 a91ca5d3c1e0..b86093f50996 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.3.' # The full version, including alpha/beta/rc tags. -release = '1.3.23' +release = '1.3.24' # 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 a3e87200173a..038d8a68d3ec 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import awscli -requires = ['botocore>=0.57.0,<0.58.0', +requires = ['botocore>=0.58.0,<0.59.0', 'bcdoc>=0.12.0,<0.13.0', 'six>=1.1.0', 'colorama==0.2.5',