diff --git a/.changes/1.24.75.json b/.changes/1.24.75.json new file mode 100644 index 0000000000..cb2552ae09 --- /dev/null +++ b/.changes/1.24.75.json @@ -0,0 +1,12 @@ +[ + { + "category": "``codestar-notifications``", + "description": "[``botocore``] This release adds tag based access control for the UntagResource API.", + "type": "api-change" + }, + { + "category": "``ecs``", + "description": "[``botocore``] This release supports new task definition sizes.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-codestarnotifications-69148.json b/.changes/next-release/api-change-codestarnotifications-69148.json deleted file mode 100644 index 539e438d2a..0000000000 --- a/.changes/next-release/api-change-codestarnotifications-69148.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``codestar-notifications``", - "description": "[``botocore``] This release adds tag based access control for the UntagResource API." -} diff --git a/.changes/next-release/api-change-ecs-43493.json b/.changes/next-release/api-change-ecs-43493.json deleted file mode 100644 index 2b9ddf10af..0000000000 --- a/.changes/next-release/api-change-ecs-43493.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``ecs``", - "description": "[``botocore``] This release supports new task definition sizes." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 41d152d0c1..df49d5e1c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.24.75 +======= + +* api-change:``codestar-notifications``: [``botocore``] This release adds tag based access control for the UntagResource API. +* api-change:``ecs``: [``botocore``] This release supports new task definition sizes. + + 1.24.74 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 55aea54074..f6ee3a11e6 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.24.74' +__version__ = '1.24.75' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 753b5994bf..78c12a6216 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.27.74,<1.28.0 + botocore>=1.27.75,<1.28.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index 717ec70e2a..ac82a226e3 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.27.74,<1.28.0', + 'botocore>=1.27.75,<1.28.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]