diff --git a/.changes/1.35.1.json b/.changes/1.35.1.json new file mode 100644 index 000000000000..a21f8e18cac0 --- /dev/null +++ b/.changes/1.35.1.json @@ -0,0 +1,22 @@ +[ + { + "category": "``deadline``", + "description": "Add support for using the template from a previous job during job creation and listing parameter definitions for a job.", + "type": "api-change" + }, + { + "category": "``marketplace-reporting``", + "description": "Documentation-only update for AWS Marketplace Reporting API.", + "type": "api-change" + }, + { + "category": "``qconnect``", + "description": "This release adds support for the following capabilities: Configuration of the Gen AI system via AIAgent and AIPrompts. Integration support for Bedrock Knowledge Base.", + "type": "api-change" + }, + { + "category": "``redshift``", + "description": "Add validation pattern to S3KeyPrefix on the EnableLogging API", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-deadline-87332.json b/.changes/next-release/api-change-deadline-87332.json deleted file mode 100644 index 8f51ea2f06d1..000000000000 --- a/.changes/next-release/api-change-deadline-87332.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``deadline``", - "description": "Add support for using the template from a previous job during job creation and listing parameter definitions for a job." -} diff --git a/.changes/next-release/api-change-marketplacereporting-30564.json b/.changes/next-release/api-change-marketplacereporting-30564.json deleted file mode 100644 index 034ebcc0f08e..000000000000 --- a/.changes/next-release/api-change-marketplacereporting-30564.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``marketplace-reporting``", - "description": "Documentation-only update for AWS Marketplace Reporting API." -} diff --git a/.changes/next-release/api-change-qconnect-97966.json b/.changes/next-release/api-change-qconnect-97966.json deleted file mode 100644 index 46a44da72169..000000000000 --- a/.changes/next-release/api-change-qconnect-97966.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``qconnect``", - "description": "This release adds support for the following capabilities: Configuration of the Gen AI system via AIAgent and AIPrompts. Integration support for Bedrock Knowledge Base." -} diff --git a/.changes/next-release/api-change-redshift-51793.json b/.changes/next-release/api-change-redshift-51793.json deleted file mode 100644 index 50924b3fc4c4..000000000000 --- a/.changes/next-release/api-change-redshift-51793.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``redshift``", - "description": "Add validation pattern to S3KeyPrefix on the EnableLogging API" -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a6ede38ef2c8..db190fbf0629 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,15 @@ CHANGELOG ========= +1.35.1 +====== + +* api-change:``deadline``: Add support for using the template from a previous job during job creation and listing parameter definitions for a job. +* api-change:``marketplace-reporting``: Documentation-only update for AWS Marketplace Reporting API. +* api-change:``qconnect``: This release adds support for the following capabilities: Configuration of the Gen AI system via AIAgent and AIPrompts. Integration support for Bedrock Knowledge Base. +* api-change:``redshift``: Add validation pattern to S3KeyPrefix on the EnableLogging API + + 1.35.0 ====== diff --git a/awscli/__init__.py b/awscli/__init__.py index b7f81b9d689a..badeb2a4e5bd 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -18,7 +18,7 @@ import os -__version__ = '1.35.0' +__version__ = '1.35.1' # # 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 d4a73cb5fcb8..66c7362d3016 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.35' # The full version, including alpha/beta/rc tags. -release = '1.35.0' +release = '1.35.1' # 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 e270545f2f4c..fbd1d4c548cd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.35.34 + botocore==1.35.35 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 a7d333c0ca4f..839253e8b0c5 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.35.34', + 'botocore==1.35.35', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',