From 84da56583f16e57566d9f51a350fd3534e6c5343 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 28 Jul 2021 18:07:11 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-cloudformation-70199.json | 5 +++++ .changes/next-release/api-change-ssoadmin-58945.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/api-change-cloudformation-70199.json create mode 100644 .changes/next-release/api-change-ssoadmin-58945.json diff --git a/.changes/next-release/api-change-cloudformation-70199.json b/.changes/next-release/api-change-cloudformation-70199.json new file mode 100644 index 0000000000..10bfeb5ea9 --- /dev/null +++ b/.changes/next-release/api-change-cloudformation-70199.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``cloudformation``", + "description": "[``botocore``] SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature." +} diff --git a/.changes/next-release/api-change-ssoadmin-58945.json b/.changes/next-release/api-change-ssoadmin-58945.json new file mode 100644 index 0000000000..e8f12b03b7 --- /dev/null +++ b/.changes/next-release/api-change-ssoadmin-58945.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``sso-admin``", + "description": "[``botocore``] Documentation updates for arn:aws:trebuchet:::service:v1:03a2216d-1cda-4696-9ece-1387cb6f6952" +} From aa3602da7f7b23e78aa33134ce3a43845855cdbe Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 28 Jul 2021 18:07:19 +0000 Subject: [PATCH 2/2] Bumping version to 1.18.9 --- .changes/1.18.9.json | 12 ++++++++++++ .../api-change-cloudformation-70199.json | 5 ----- .changes/next-release/api-change-ssoadmin-58945.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.18.9.json delete mode 100644 .changes/next-release/api-change-cloudformation-70199.json delete mode 100644 .changes/next-release/api-change-ssoadmin-58945.json diff --git a/.changes/1.18.9.json b/.changes/1.18.9.json new file mode 100644 index 0000000000..7ef771243e --- /dev/null +++ b/.changes/1.18.9.json @@ -0,0 +1,12 @@ +[ + { + "category": "``sso-admin``", + "description": "[``botocore``] Documentation updates for arn:aws:trebuchet:::service:v1:03a2216d-1cda-4696-9ece-1387cb6f6952", + "type": "api-change" + }, + { + "category": "``cloudformation``", + "description": "[``botocore``] SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-cloudformation-70199.json b/.changes/next-release/api-change-cloudformation-70199.json deleted file mode 100644 index 10bfeb5ea9..0000000000 --- a/.changes/next-release/api-change-cloudformation-70199.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``cloudformation``", - "description": "[``botocore``] SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature." -} diff --git a/.changes/next-release/api-change-ssoadmin-58945.json b/.changes/next-release/api-change-ssoadmin-58945.json deleted file mode 100644 index e8f12b03b7..0000000000 --- a/.changes/next-release/api-change-ssoadmin-58945.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sso-admin``", - "description": "[``botocore``] Documentation updates for arn:aws:trebuchet:::service:v1:03a2216d-1cda-4696-9ece-1387cb6f6952" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2a3fbb00a0..6ade020086 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.18.9 +====== + +* api-change:``sso-admin``: [``botocore``] Documentation updates for arn:aws:trebuchet:::service:v1:03a2216d-1cda-4696-9ece-1387cb6f6952 +* api-change:``cloudformation``: [``botocore``] SDK update to support Importing existing Stacks to new/existing Self Managed StackSet - Stack Import feature. + + 1.18.8 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 06416953c8..1e05f2706b 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.8' +__version__ = '1.18.9' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 77ee9c68cb..3549c9acde 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,6 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.8,<1.22.0 + botocore>=1.21.9,<1.22.0 jmespath>=0.7.1,<1.0.0 s3transfer>=0.5.0,<0.6.0 diff --git a/setup.py b/setup.py index 9a1a3572f8..91735c8252 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.21.8,<1.22.0', + 'botocore>=1.21.9,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]