From 1decb6eeeb92cd828d7920234044fe3a1d57e9e1 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 14 Feb 2024 19:10:49 +0000 Subject: [PATCH] Bumping version to 1.32.42 --- .changes/1.32.42.json | 17 +++++++++++++++++ .../api-change-controltower-85469.json | 5 ----- .../api-change-lookoutequipment-77819.json | 5 ----- .../api-change-qbusiness-44704.json | 5 ----- CHANGELOG.rst | 8 ++++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 9 files changed, 29 insertions(+), 19 deletions(-) create mode 100644 .changes/1.32.42.json delete mode 100644 .changes/next-release/api-change-controltower-85469.json delete mode 100644 .changes/next-release/api-change-lookoutequipment-77819.json delete mode 100644 .changes/next-release/api-change-qbusiness-44704.json diff --git a/.changes/1.32.42.json b/.changes/1.32.42.json new file mode 100644 index 000000000000..838287835d56 --- /dev/null +++ b/.changes/1.32.42.json @@ -0,0 +1,17 @@ +[ + { + "category": "``controltower``", + "description": "Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance.", + "type": "api-change" + }, + { + "category": "``lookoutequipment``", + "description": "This feature allows customers to see pointwise model diagnostics results for their models.", + "type": "api-change" + }, + { + "category": "``qbusiness``", + "description": "This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-controltower-85469.json b/.changes/next-release/api-change-controltower-85469.json deleted file mode 100644 index 21ad26fef898..000000000000 --- a/.changes/next-release/api-change-controltower-85469.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``controltower``", - "description": "Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance." -} diff --git a/.changes/next-release/api-change-lookoutequipment-77819.json b/.changes/next-release/api-change-lookoutequipment-77819.json deleted file mode 100644 index a31a1cf180a1..000000000000 --- a/.changes/next-release/api-change-lookoutequipment-77819.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lookoutequipment``", - "description": "This feature allows customers to see pointwise model diagnostics results for their models." -} diff --git a/.changes/next-release/api-change-qbusiness-44704.json b/.changes/next-release/api-change-qbusiness-44704.json deleted file mode 100644 index a5cbfae97648..000000000000 --- a/.changes/next-release/api-change-qbusiness-44704.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``qbusiness``", - "description": "This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 67f079c4efc2..e15727a644a6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.32.42 +======= + +* api-change:``controltower``: Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance. +* api-change:``lookoutequipment``: This feature allows customers to see pointwise model diagnostics results for their models. +* api-change:``qbusiness``: This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API. + + 1.32.41 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 079c9ec6dd84..3abc18452ec6 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.41' +__version__ = '1.32.42' # # Get our data path to be added to botocore's search path diff --git a/doc/source/conf.py b/doc/source/conf.py index 37ac06ab9f03..4a59032af923 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.32.' # The full version, including alpha/beta/rc tags. -release = '1.32.41' +release = '1.32.42' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 9eb440b0afcb..c4adc45ebec2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.41 + botocore==1.34.42 docutils>=0.10,<0.17 s3transfer>=0.10.0,<0.11.0 PyYAML>=3.10,<6.1 diff --git a/setup.py b/setup.py index 47f3267e4e96..b17d42597262 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.41', + 'botocore==1.34.42', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',