diff --git a/.changes/1.19.3.json b/.changes/1.19.3.json new file mode 100644 index 000000000000..581fe28e8da6 --- /dev/null +++ b/.changes/1.19.3.json @@ -0,0 +1,17 @@ +[ + { + "category": "``elbv2``", + "description": "Update elbv2 command to latest version", + "type": "api-change" + }, + { + "category": "``macie``", + "description": "Update macie command to latest version", + "type": "api-change" + }, + { + "category": "``organizations``", + "description": "Update organizations command to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ec26f651d228..8344be4fbf0e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.19.3 +====== + +* api-change:``elbv2``: Update elbv2 command to latest version +* api-change:``macie``: Update macie command to latest version +* api-change:``organizations``: Update organizations command to latest version + + 1.19.2 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index fa38c1c28cbe..c673ce07a691 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.19.2' +__version__ = '1.19.3' # # 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 613ec6675cfd..99eda0a798e8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.19' # The full version, including alpha/beta/rc tags. -release = '1.19.2' +release = '1.19.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 17b6a8d5684f..80ec154559f6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ universal = 1 [metadata] requires-dist = - botocore==1.20.2 + botocore==1.20.3 docutils>=0.10,<0.16 s3transfer>=0.3.0,<0.4.0 PyYAML>=3.10,<5.4 diff --git a/setup.py b/setup.py index 049aac0f49f5..a52481daa5a8 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.20.2', + 'botocore==1.20.3', 'docutils>=0.10,<0.16', 's3transfer>=0.3.0,<0.4.0', 'PyYAML>=3.10,<5.4',