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"
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"
 )