From d2f11b6516ed90655113036a3756e8471ab4f1a4 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 14 Aug 2024 18:03:27 +0000 Subject: [PATCH 1/2] Update changelog based on model updates --- .changes/next-release/api-change-codebuild-17785.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/next-release/api-change-codebuild-17785.json diff --git a/.changes/next-release/api-change-codebuild-17785.json b/.changes/next-release/api-change-codebuild-17785.json new file mode 100644 index 000000000000..d7d57945cf2b --- /dev/null +++ b/.changes/next-release/api-change-codebuild-17785.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``codebuild``", + "description": "AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project." +} From 8655c2a7015de15402c3b722be7331cbf504a985 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 14 Aug 2024 18:04:52 +0000 Subject: [PATCH 2/2] Bumping version to 1.33.43 --- .changes/1.33.43.json | 7 +++++++ .changes/next-release/api-change-codebuild-17785.json | 5 ----- CHANGELOG.rst | 6 ++++++ awscli/__init__.py | 2 +- doc/source/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 .changes/1.33.43.json delete mode 100644 .changes/next-release/api-change-codebuild-17785.json diff --git a/.changes/1.33.43.json b/.changes/1.33.43.json new file mode 100644 index 000000000000..1ecba0d08a40 --- /dev/null +++ b/.changes/1.33.43.json @@ -0,0 +1,7 @@ +[ + { + "category": "``codebuild``", + "description": "AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codebuild-17785.json b/.changes/next-release/api-change-codebuild-17785.json deleted file mode 100644 index d7d57945cf2b..000000000000 --- a/.changes/next-release/api-change-codebuild-17785.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codebuild``", - "description": "AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3e7c731a54e7..d43a7d76c97f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.33.43 +======= + +* api-change:``codebuild``: AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project. + + 1.33.42 ======= diff --git a/awscli/__init__.py b/awscli/__init__.py index 2deea9f0cfb5..8ca17d055f4b 100644 --- a/awscli/__init__.py +++ b/awscli/__init__.py @@ -17,7 +17,7 @@ """ import os -__version__ = '1.33.42' +__version__ = '1.33.43' # # 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 4f2813f9b1cc..9ab122076306 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -52,7 +52,7 @@ # The short X.Y version. version = '1.33.' # The full version, including alpha/beta/rc tags. -release = '1.33.42' +release = '1.33.43' # 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 99f4c5fd659f..314ef108038a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore==1.34.160 + botocore==1.34.161 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 1eec1ea7fc60..25d3aaa39d93 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def find_version(*file_paths): install_requires = [ - 'botocore==1.34.160', + 'botocore==1.34.161', 'docutils>=0.10,<0.17', 's3transfer>=0.10.0,<0.11.0', 'PyYAML>=3.10,<6.1',