From 926a59095b8b9a4a2f0b9cf616caf9a1045b360f Mon Sep 17 00:00:00 2001 From: Evan Mattson <35585003+moonbox3@users.noreply.github.com> Date: Fri, 20 Dec 2024 01:03:18 +0900 Subject: [PATCH] Python: Bump Python version to 1.17.1 for a release. (#10018) ### Motivation and Context Bump Python version to 1.17.1 for a release. ### Description Bump Python version to 1.17.1 for a release. ### Contribution Checklist - [X] The code builds clean without any errors or warnings - [X] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [X] All unit tests pass, and I have added new tests where possible - [X] I didn't break anyone :smile: --- python/semantic_kernel/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/semantic_kernel/__init__.py b/python/semantic_kernel/__init__.py index 698296c51027..7e3a783282b7 100644 --- a/python/semantic_kernel/__init__.py +++ b/python/semantic_kernel/__init__.py @@ -2,5 +2,5 @@ from semantic_kernel.kernel import Kernel -__version__ = "1.17.0" +__version__ = "1.17.1" __all__ = ["Kernel", "__version__"]