From 26245df4ae146b8039d90a49312f607dc6b006f7 Mon Sep 17 00:00:00 2001 From: Evan Mattson Date: Wed, 28 May 2025 08:46:43 +0900 Subject: [PATCH] Bump Python version to 1.32.0 for a release. --- python/semantic_kernel/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/semantic_kernel/__init__.py b/python/semantic_kernel/__init__.py index 96c1476080ac..17bdd77c4ff0 100644 --- a/python/semantic_kernel/__init__.py +++ b/python/semantic_kernel/__init__.py @@ -2,8 +2,8 @@ from semantic_kernel.kernel import Kernel -__version__ = "1.31.0" +__version__ = "1.32.0" -DEFAULT_RC_VERSION = f"{__version__}-rc8" +DEFAULT_RC_VERSION = f"{__version__}-rc9" __all__ = ["DEFAULT_RC_VERSION", "Kernel", "__version__"]