diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ffa2efdcf98f..a158311a24c5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ CHANGELOG ========= -Next Release (TBD) -================== +1.3.20 +====== * feature:``aws cloudsearchdomain``: Add support for the Amazon CloudSearch Domain command. diff --git a/awscli/__init__.py b/awscli/__init__.py index b32446081050..bcc14bf96417 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.3.19' +__version__ = '1.3.20' # # 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 34d4161f139d..648996a20b2d 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.19' +release = '1.3.20' # 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 242054c42a62..ec1e88c7cd1d 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import awscli -requires = ['botocore>=0.53.0,<0.54.0', +requires = ['botocore>=0.54.0,<0.55.0', 'bcdoc>=0.12.0,<0.13.0', 'six>=1.1.0', 'colorama==0.2.5',