From f8c782ac2224cac2cf97e410adf81a832fc233b2 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 29 Sep 2021 18:09:45 +0000 Subject: [PATCH] Bumping version to 1.18.51 --- .changes/1.18.51.json | 17 +++++++++++++++++ .changes/next-release/api-change-amp-79346.json | 5 ----- .../next-release/api-change-lambda-1202.json | 5 ----- .../next-release/api-change-sesv2-69150.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.18.51.json delete mode 100644 .changes/next-release/api-change-amp-79346.json delete mode 100644 .changes/next-release/api-change-lambda-1202.json delete mode 100644 .changes/next-release/api-change-sesv2-69150.json diff --git a/.changes/1.18.51.json b/.changes/1.18.51.json new file mode 100644 index 0000000000..bb577eea11 --- /dev/null +++ b/.changes/1.18.51.json @@ -0,0 +1,17 @@ +[ + { + "category": "``lambda``", + "description": "[``botocore``] Adds support for Lambda functions powered by AWS Graviton2 processors. Customers can now select the CPU architecture for their functions.", + "type": "api-change" + }, + { + "category": "``sesv2``", + "description": "[``botocore``] This release includes the ability to use 2048 bits RSA key pairs for DKIM in SES, either with Easy DKIM or Bring Your Own DKIM.", + "type": "api-change" + }, + { + "category": "``amp``", + "description": "[``botocore``] This release adds alert manager and rule group namespace APIs", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-amp-79346.json b/.changes/next-release/api-change-amp-79346.json deleted file mode 100644 index 03848447a5..0000000000 --- a/.changes/next-release/api-change-amp-79346.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``amp``", - "description": "[``botocore``] This release adds alert manager and rule group namespace APIs" -} diff --git a/.changes/next-release/api-change-lambda-1202.json b/.changes/next-release/api-change-lambda-1202.json deleted file mode 100644 index 2526f7a51f..0000000000 --- a/.changes/next-release/api-change-lambda-1202.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lambda``", - "description": "[``botocore``] Adds support for Lambda functions powered by AWS Graviton2 processors. Customers can now select the CPU architecture for their functions." -} diff --git a/.changes/next-release/api-change-sesv2-69150.json b/.changes/next-release/api-change-sesv2-69150.json deleted file mode 100644 index d7491da0d3..0000000000 --- a/.changes/next-release/api-change-sesv2-69150.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sesv2``", - "description": "[``botocore``] This release includes the ability to use 2048 bits RSA key pairs for DKIM in SES, either with Easy DKIM or Bring Your Own DKIM." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4d8114ff46..0699afaabf 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.18.51 +======= + +* api-change:``lambda``: [``botocore``] Adds support for Lambda functions powered by AWS Graviton2 processors. Customers can now select the CPU architecture for their functions. +* api-change:``sesv2``: [``botocore``] This release includes the ability to use 2048 bits RSA key pairs for DKIM in SES, either with Easy DKIM or Bring Your Own DKIM. +* api-change:``amp``: [``botocore``] This release adds alert manager and rule group namespace APIs + + 1.18.50 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 5a57a1a99d..fd68923286 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -18,7 +18,7 @@ __author__ = 'Amazon Web Services' -__version__ = '1.18.50' +__version__ = '1.18.51' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index f65114cf98..26cb9338f2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.21.50,<1.22.0 + botocore>=1.21.51,<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 c297025388..fe33287e22 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.21.50,<1.22.0', + 'botocore>=1.21.51,<1.22.0', 'jmespath>=0.7.1,<1.0.0', 's3transfer>=0.5.0,<0.6.0' ]