From e57f5ec29079d2ef67f2673869f8625611e59ee4 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 10 Nov 2021 19:07:04 +0000 Subject: [PATCH] Bumping version to 1.20.3 --- .changes/1.20.3.json | 17 +++++++++++++++++ .../next-release/api-change-backup-73799.json | 5 ----- .changes/next-release/api-change-ecs-33846.json | 5 ----- .../api-change-resiliencehub-27786.json | 5 ----- CHANGELOG.rst | 8 ++++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 8 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 .changes/1.20.3.json delete mode 100644 .changes/next-release/api-change-backup-73799.json delete mode 100644 .changes/next-release/api-change-ecs-33846.json delete mode 100644 .changes/next-release/api-change-resiliencehub-27786.json diff --git a/.changes/1.20.3.json b/.changes/1.20.3.json new file mode 100644 index 0000000000..6cd45123e3 --- /dev/null +++ b/.changes/1.20.3.json @@ -0,0 +1,17 @@ +[ + { + "category": "``backup``", + "description": "[``botocore``] AWS Backup SDK provides new options when scheduling backups: select supported services and resources that are assigned to a particular tag, linked to a combination of tags, or can be identified by a partial tag value, and exclude resources from their assignments.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] This release adds support for container instance health.", + "type": "api-change" + }, + { + "category": "``resiliencehub``", + "description": "[``botocore``] Initial release of AWS Resilience Hub, a managed service that enables you to define, validate, and track the resilience of your applications on AWS", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-backup-73799.json b/.changes/next-release/api-change-backup-73799.json deleted file mode 100644 index e792594883..0000000000 --- a/.changes/next-release/api-change-backup-73799.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``backup``", - "description": "[``botocore``] AWS Backup SDK provides new options when scheduling backups: select supported services and resources that are assigned to a particular tag, linked to a combination of tags, or can be identified by a partial tag value, and exclude resources from their assignments." -} diff --git a/.changes/next-release/api-change-ecs-33846.json b/.changes/next-release/api-change-ecs-33846.json deleted file mode 100644 index 0f83a00394..0000000000 --- a/.changes/next-release/api-change-ecs-33846.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ecs``", - "description": "[``botocore``] This release adds support for container instance health." -} diff --git a/.changes/next-release/api-change-resiliencehub-27786.json b/.changes/next-release/api-change-resiliencehub-27786.json deleted file mode 100644 index ab003a008f..0000000000 --- a/.changes/next-release/api-change-resiliencehub-27786.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``resiliencehub``", - "description": "[``botocore``] Initial release of AWS Resilience Hub, a managed service that enables you to define, validate, and track the resilience of your applications on AWS" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b5ee5aa25c..f970036c45 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.20.3 +====== + +* api-change:``backup``: [``botocore``] AWS Backup SDK provides new options when scheduling backups: select supported services and resources that are assigned to a particular tag, linked to a combination of tags, or can be identified by a partial tag value, and exclude resources from their assignments. +* api-change:``ecs``: [``botocore``] This release adds support for container instance health. +* api-change:``resiliencehub``: [``botocore``] Initial release of AWS Resilience Hub, a managed service that enables you to define, validate, and track the resilience of your applications on AWS + + 1.20.2 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index f427823f61..1e2fa257c9 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.20.2' +__version__ = '1.20.3' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index bc19e1cede..80f710c9fc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.23.2,<1.24.0 + botocore>=1.23.3,<1.24.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index d2681c65f7..2f02b0e20b 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.23.2,<1.24.0', + 'botocore>=1.23.3,<1.24.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]