From 0af3c9d11b7bca3f357e8a9a776ab621f1ab670c Mon Sep 17 00:00:00 2001 From: Inada Naoki Date: Wed, 3 Jun 2026 12:26:27 +0900 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- msgpack/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msgpack/__init__.py b/msgpack/__init__.py index a2ec7ef..f7346d0 100644 --- a/msgpack/__init__.py +++ b/msgpack/__init__.py @@ -4,7 +4,7 @@ import os from .exceptions import * # noqa: F403 from .ext import ExtType, Timestamp -version = (1, 2, 0, "rc1") +version = (1, 2, 0) __version__ = "1.2.0rc1"