From f9dfc2e35091fbbdc068454b233fe93e045f70e5 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Thu, 9 Nov 2023 01:24:13 +0000 Subject: [PATCH] Bumping version to 1.28.82 --- .changes/1.28.82.json | 7 +++++++ .changes/next-release/api-change-sqs-40013.json | 5 ----- CHANGELOG.rst | 6 ++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 .changes/1.28.82.json delete mode 100644 .changes/next-release/api-change-sqs-40013.json diff --git a/.changes/1.28.82.json b/.changes/1.28.82.json new file mode 100644 index 0000000000..c85bac9913 --- /dev/null +++ b/.changes/1.28.82.json @@ -0,0 +1,7 @@ +[ + { + "category": "``sqs``", + "description": "[``botocore``] This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-sqs-40013.json b/.changes/next-release/api-change-sqs-40013.json deleted file mode 100644 index e329ffc155..0000000000 --- a/.changes/next-release/api-change-sqs-40013.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sqs``", - "description": "[``botocore``] This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dac03254fa..fc10d8534a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.28.82 +======= + +* api-change:``sqs``: [``botocore``] This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix. + + 1.28.81 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index cc12e2a80b..e332930f03 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.28.81' +__version__ = '1.28.82' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 3faf104353..ed932e1edc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.31.81,<1.32.0 + botocore>=1.31.82,<1.32.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.7.0,<0.8.0 diff --git a/setup.py b/setup.py index 2796388474..8e6af8c54f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.31.81,<1.32.0', + 'botocore>=1.31.82,<1.32.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.7.0,<0.8.0', ]