From 5693d8858c704dd41a5dc03d0baf1b2872f959e2 Mon Sep 17 00:00:00 2001 From: Aleksei Grebenkin Date: Mon, 30 Oct 2023 14:52:43 +0000 Subject: [PATCH] Bump version to 2.0.8 --- RELEASE.CHANGELOG.md | 9 +++++++++ awslambdaric/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/RELEASE.CHANGELOG.md b/RELEASE.CHANGELOG.md index 8ae5c33..e14c364 100644 --- a/RELEASE.CHANGELOG.md +++ b/RELEASE.CHANGELOG.md @@ -1,3 +1,12 @@ +### October 30, 2023 + +`2.0.8`: + +- Onboarded Python3.12 ([#118](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/118)) +- Fix runtime_client blocking main thread from SIGTERM being handled. Enabled by default only for Python3.12 ([#115](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/115)) ([#124](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/124)) ([#125](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/125)) +- Use unicode chars instead of escape sequences in json encoder output. Enabled by default only for Python3.12 ([#88](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/88)) ([#122](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/122)) +- Cold start improvements ([#121](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/121)) + ### August 29, 2023 `2.0.7`: diff --git a/awslambdaric/__init__.py b/awslambdaric/__init__.py index b0184d1..f9e4637 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.7" +__version__ = "2.0.8"