From 51ff38cb0b667e919b816615320ab0f91c28a6cb Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Fri, 1 Dec 2023 19:09:38 +0000 Subject: [PATCH] Bumping version to 1.33.6 --- .changes/1.33.6.json | 17 +++++++++++++++++ .../next-release/api-change-qconnect-48351.json | 5 ----- .../next-release/api-change-rbin-33818.json | 5 ----- .../api-change-verifiedpermissions-63317.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.33.6.json delete mode 100644 .changes/next-release/api-change-qconnect-48351.json delete mode 100644 .changes/next-release/api-change-rbin-33818.json delete mode 100644 .changes/next-release/api-change-verifiedpermissions-63317.json diff --git a/.changes/1.33.6.json b/.changes/1.33.6.json new file mode 100644 index 0000000000..6b8db9b1e9 --- /dev/null +++ b/.changes/1.33.6.json @@ -0,0 +1,17 @@ +[ + { + "category": "``qconnect``", + "description": "[``botocore``] This release adds the PutFeedback API and allows providing feedback against the specified assistant for the specified target.", + "type": "api-change" + }, + { + "category": "``rbin``", + "description": "[``botocore``] Added resource identifier in the output and updated error handling.", + "type": "api-change" + }, + { + "category": "``verifiedpermissions``", + "description": "[``botocore``] Adds description field to PolicyStore API's and namespaces field to GetSchema.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-qconnect-48351.json b/.changes/next-release/api-change-qconnect-48351.json deleted file mode 100644 index 5ed7963ab3..0000000000 --- a/.changes/next-release/api-change-qconnect-48351.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``qconnect``", - "description": "[``botocore``] This release adds the PutFeedback API and allows providing feedback against the specified assistant for the specified target." -} diff --git a/.changes/next-release/api-change-rbin-33818.json b/.changes/next-release/api-change-rbin-33818.json deleted file mode 100644 index 6e8687cea0..0000000000 --- a/.changes/next-release/api-change-rbin-33818.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``rbin``", - "description": "[``botocore``] Added resource identifier in the output and updated error handling." -} diff --git a/.changes/next-release/api-change-verifiedpermissions-63317.json b/.changes/next-release/api-change-verifiedpermissions-63317.json deleted file mode 100644 index f749d0a599..0000000000 --- a/.changes/next-release/api-change-verifiedpermissions-63317.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``verifiedpermissions``", - "description": "[``botocore``] Adds description field to PolicyStore API's and namespaces field to GetSchema." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3bb84e305c..06f049ce8d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.33.6 +====== + +* api-change:``qconnect``: [``botocore``] This release adds the PutFeedback API and allows providing feedback against the specified assistant for the specified target. +* api-change:``rbin``: [``botocore``] Added resource identifier in the output and updated error handling. +* api-change:``verifiedpermissions``: [``botocore``] Adds description field to PolicyStore API's and namespaces field to GetSchema. + + 1.33.5 ====== diff --git a/boto3/__init__.py b/boto3/__init__.py index 6194fb45b5..040a4dba13 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.33.5' +__version__ = '1.33.6' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 933e785392..9550e844c5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.33.5,<1.34.0 + botocore>=1.33.6,<1.34.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.8.2,<0.9.0 diff --git a/setup.py b/setup.py index 0639f87dfa..e2b4d4b0b9 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.33.5,<1.34.0', + 'botocore>=1.33.6,<1.34.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.8.2,<0.9.0', ]