From d4b60060a4e1de429dbdcaea2c2edee9ecf40507 Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 14 Aug 2024 18:04:28 +0000 Subject: [PATCH 1/2] Add changelog entries from botocore --- .changes/next-release/api-change-codebuild-71108.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/next-release/api-change-codebuild-71108.json diff --git a/.changes/next-release/api-change-codebuild-71108.json b/.changes/next-release/api-change-codebuild-71108.json new file mode 100644 index 0000000000..4f5ad03684 --- /dev/null +++ b/.changes/next-release/api-change-codebuild-71108.json @@ -0,0 +1,5 @@ +{ + "type": "api-change", + "category": "``codebuild``", + "description": "[``botocore``] AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project." +} From c36a3f24ec8209dfede49dc5846ea94db24fcd7c Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Wed, 14 Aug 2024 18:04:48 +0000 Subject: [PATCH 2/2] Bumping version to 1.34.161 --- .changes/1.34.161.json | 7 +++++++ .changes/next-release/api-change-codebuild-71108.json | 5 ----- CHANGELOG.rst | 6 ++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 8 deletions(-) create mode 100644 .changes/1.34.161.json delete mode 100644 .changes/next-release/api-change-codebuild-71108.json diff --git a/.changes/1.34.161.json b/.changes/1.34.161.json new file mode 100644 index 0000000000..d22fd69710 --- /dev/null +++ b/.changes/1.34.161.json @@ -0,0 +1,7 @@ +[ + { + "category": "``codebuild``", + "description": "[``botocore``] 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-71108.json b/.changes/next-release/api-change-codebuild-71108.json deleted file mode 100644 index 4f5ad03684..0000000000 --- a/.changes/next-release/api-change-codebuild-71108.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codebuild``", - "description": "[``botocore``] 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 be1da2390d..d9e0931758 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,12 @@ CHANGELOG ========= +1.34.161 +======== + +* api-change:``codebuild``: [``botocore``] AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project. + + 1.34.160 ======== diff --git a/boto3/__init__.py b/boto3/__init__.py index bcd7702e3d..817ad5eacd 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.34.160' +__version__ = '1.34.161' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 4fe5806c5f..016fc56362 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.34.160,<1.35.0 + botocore>=1.34.161,<1.35.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.10.0,<0.11.0 diff --git a/setup.py b/setup.py index 7e649c707f..1ad01b8f98 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ requires = [ - 'botocore>=1.34.160,<1.35.0', + 'botocore>=1.34.161,<1.35.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.10.0,<0.11.0', ]