From a13d55c36f0c5efc7f081a1041c7fe0af557f2ec Mon Sep 17 00:00:00 2001 From: Sean O Brien <briensea@amazon.com> Date: Tue, 13 Feb 2024 15:06:57 +0000 Subject: [PATCH 1/2] Update format of unhandled exception warning message. (#132) --- awslambdaric/lambda_literals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awslambdaric/lambda_literals.py b/awslambdaric/lambda_literals.py index 82560c5..2585b89 100644 --- a/awslambdaric/lambda_literals.py +++ b/awslambdaric/lambda_literals.py @@ -13,5 +13,5 @@ "For functions using managed runtimes, runtime updates can be triggered by a function change, or can be applied automatically. " "To determine if the runtime has been updated, check the runtime version in the INIT_START log entry. " "If this error correlates with a change in the runtime version, you may be able to mitigate this error by temporarily rolling back to the previous runtime version. " - "For more information, see https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html" + "For more information, see https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html\r" ) From 8930afa5c1381873c2aa77b844e029bc0e11a149 Mon Sep 17 00:00:00 2001 From: Sean O Brien <briensea@amazon.com> Date: Tue, 13 Feb 2024 15:24:00 +0000 Subject: [PATCH 2/2] Bump version to 2.0.10. (#133) --- RELEASE.CHANGELOG.md | 6 ++++++ awslambdaric/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE.CHANGELOG.md b/RELEASE.CHANGELOG.md index c1b044a..2450f7a 100644 --- a/RELEASE.CHANGELOG.md +++ b/RELEASE.CHANGELOG.md @@ -1,3 +1,9 @@ +### February 13, 2024 + +`2.0.10`: + +- Update format of unhandled exception warning message. ([#132](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/132)) + ### February 01, 2024 `2.0.9`: diff --git a/awslambdaric/__init__.py b/awslambdaric/__init__.py index dd3f03f..ac2dbed 100644 --- a/awslambdaric/__init__.py +++ b/awslambdaric/__init__.py @@ -2,4 +2,4 @@ Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. """ -__version__ = "2.0.9" +__version__ = "2.0.10"