diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 032f59b15fa0..59b990d8bdfa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,8 @@ CHANGELOG ========= -Next Release (TBD) -================== +1.3.19 +====== * feature:``aws ses``: Add support for delivery notifications * bugfix:Region Config: Fix issue for ``cn-north-1`` region diff --git a/awscli/__init__.py b/awscli/__init__.py index 921c0b600bbe..b32446081050 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.3.18' +__version__ = '1.3.19' # # 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 e3a7e64a75c7..34d4161f139d 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.18' +release = '1.3.19' # 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 3d291eaac8ac..242054c42a62 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import awscli -requires = ['botocore>=0.52.0,<0.53.0', +requires = ['botocore>=0.53.0,<0.54.0', 'bcdoc>=0.12.0,<0.13.0', 'six>=1.1.0', 'colorama==0.2.5',