diff --git a/.changes/1.32.38.json b/.changes/1.32.38.json new file mode 100644 index 000000000000..6af93ed26b6e --- /dev/null +++ b/.changes/1.32.38.json @@ -0,0 +1,17 @@ +[ + { + "category": "``codepipeline``", + "description": "Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.", + "type": "api-change" + }, + { + "category": "``quicksight``", + "description": "General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update", + "type": "api-change" + }, + { + "category": "``workspaces``", + "description": "This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter \"WorkspaceName\".", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codepipeline-40541.json b/.changes/next-release/api-change-codepipeline-40541.json deleted file mode 100644 index b541eb1568eb..000000000000 --- a/.changes/next-release/api-change-codepipeline-40541.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codepipeline``", - "description": "Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths." -} diff --git a/.changes/next-release/api-change-quicksight-49585.json b/.changes/next-release/api-change-quicksight-49585.json deleted file mode 100644 index d3a5945a827e..000000000000 --- a/.changes/next-release/api-change-quicksight-49585.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``quicksight``", - "description": "General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update" -} diff --git a/.changes/next-release/api-change-workspaces-90428.json b/.changes/next-release/api-change-workspaces-90428.json deleted file mode 100644 index 44932e74b95c..000000000000 --- a/.changes/next-release/api-change-workspaces-90428.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``workspaces``", - "description": "This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter \"WorkspaceName\"." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1b38f68b76d0..b32f11c4c858 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ CHANGELOG ========= +1.32.38 +======= + +* api-change:``codepipeline``: Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths. +* api-change:``quicksight``: General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update +* api-change:``workspaces``: This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName". + + 1.32.37 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 7c706c429ec6..8f4b1913c9d0 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.32.37' +__version__ = '1.32.38' # # 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 1c737548c965..8ed4364980b5 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.37' +release = '1.32.38' # 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 0b0fb339f3a8..b0fb276c60c2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.37 + botocore==1.34.38 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 09e15f5d31ef..9573a9fb95b9 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.37', + 'botocore==1.34.38', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',