From c8206e013d809ab0cb01a795f3f0b4c657e6708b Mon Sep 17 00:00:00 2001 From: aws-sdk-python-automation Date: Mon, 23 Jan 2023 19:17:09 +0000 Subject: [PATCH] Bumping version to 1.26.55 --- .changes/1.26.55.json | 12 ++++++++++++ .changes/next-release/api-change-lambda-84169.json | 5 ----- .../next-release/api-change-sagemaker-20243.json | 5 ----- CHANGELOG.rst | 7 +++++++ boto3/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 7 files changed, 22 insertions(+), 13 deletions(-) create mode 100644 .changes/1.26.55.json delete mode 100644 .changes/next-release/api-change-lambda-84169.json delete mode 100644 .changes/next-release/api-change-sagemaker-20243.json diff --git a/.changes/1.26.55.json b/.changes/1.26.55.json new file mode 100644 index 0000000000..53a883afc5 --- /dev/null +++ b/.changes/1.26.55.json @@ -0,0 +1,12 @@ +[ + { + "category": "``lambda``", + "description": "[``botocore``] Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs.", + "type": "api-change" + }, + { + "category": "``sagemaker``", + "description": "[``botocore``] Amazon SageMaker Inference now supports P4de instance types.", + "type": "api-change" + } +] \ No newline at end of file diff --git a/.changes/next-release/api-change-lambda-84169.json b/.changes/next-release/api-change-lambda-84169.json deleted file mode 100644 index dbd9c098d5..0000000000 --- a/.changes/next-release/api-change-lambda-84169.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``lambda``", - "description": "[``botocore``] Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs." -} diff --git a/.changes/next-release/api-change-sagemaker-20243.json b/.changes/next-release/api-change-sagemaker-20243.json deleted file mode 100644 index 60249c35ae..0000000000 --- a/.changes/next-release/api-change-sagemaker-20243.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "api-change", - "category": "``sagemaker``", - "description": "[``botocore``] Amazon SageMaker Inference now supports P4de instance types." -} diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ef87eae447..22c74b9c02 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ CHANGELOG ========= +1.26.55 +======= + +* api-change:``lambda``: [``botocore``] Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs. +* api-change:``sagemaker``: [``botocore``] Amazon SageMaker Inference now supports P4de instance types. + + 1.26.54 ======= diff --git a/boto3/__init__.py b/boto3/__init__.py index 23cce1ddcb..254482ee24 100644 --- a/boto3/__init__.py +++ b/boto3/__init__.py @@ -17,7 +17,7 @@ from boto3.session import Session __author__ = 'Amazon Web Services' -__version__ = '1.26.54' +__version__ = '1.26.55' # The default Boto3 session; autoloaded when needed. diff --git a/setup.cfg b/setup.cfg index 71e47a3f49..04043d3d54 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,7 +3,7 @@ universal = 0 [metadata] requires_dist = - botocore>=1.29.54,<1.30.0 + botocore>=1.29.55,<1.30.0 jmespath>=0.7.1,<2.0.0 s3transfer>=0.6.0,<0.7.0 diff --git a/setup.py b/setup.py index f88462bb8b..2e227aa82f 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ requires = [ - 'botocore>=1.29.54,<1.30.0', + 'botocore>=1.29.55,<1.30.0', 'jmespath>=0.7.1,<2.0.0', 's3transfer>=0.6.0,<0.7.0', ]