diff --git a/.changes/1.18.164.json b/.changes/1.18.164.json new file mode 100644 index 000000000000..acbb7e3066d4 --- /dev/null +++ b/.changes/1.18.164.json @@ -0,0 +1,17 @@ +[ + { + "category": "``macie2``", + "description": "Update macie2 command to latest version", + "type": "api-change" + }, + { + "category": "``mediatailor``", + "description": "Update mediatailor command to latest version", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "Update quicksight command to latest version", + "type": "api-change" + } +] \ No newline at end of file diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ad5779446e82..39bace4366ef 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.18.164 +======== + +* api-change:``macie2``: Update macie2 command to latest version +* api-change:``mediatailor``: Update mediatailor command to latest version +* api-change:``quicksight``: Update quicksight command to latest version + + 1.18.163 ======== diff --git a/awscli/__init__.py b/awscli/__init__.py index f29d0bf8d307..e9fcfeadd705 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.18.163' +__version__ = '1.18.164' # # 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 7681310b684a..c1141777916a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.18.1' # The full version, including alpha/beta/rc tags. -release = '1.18.163' +release = '1.18.164' # 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 a2158348ff56..dde9bcef97b4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ universal = 1 [metadata] requires-dist = - botocore==1.19.3 + botocore==1.19.4 docutils>=0.10,<0.16 s3transfer>=0.3.0,<0.4.0 PyYAML>=3.10,<5.3; python_version=='3.4' diff --git a/setup.py b/setup.py index 21081dcf4469..cc6e0fcb5d25 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.19.3', + 'botocore==1.19.4', 'docutils>=0.10,<0.16', 's3transfer>=0.3.0,<0.4.0', ]