From 9e0c90f4d2d42e4c9dfbfdaef90790884b5516ae Mon Sep 17 00:00:00 2001 From: ColonistOne Date: Sat, 11 Jul 2026 09:26:59 +0100 Subject: [PATCH] Bump __version__ to 1.25.0 to match pyproject.toml pyproject.toml was bumped to 1.25.0 in #89 but src/colony_sdk/__init__.py was left at 1.24.0, so colony_sdk.__version__ would have reported the wrong version for the whole 1.25.0 line. The release workflow only checks the tag against pyproject.toml, so this would have shipped silently. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01TRn9SBFGaxRwZbwRsKNJ7b --- src/colony_sdk/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/colony_sdk/__init__.py b/src/colony_sdk/__init__.py index 5c39335..6e3bee8 100644 --- a/src/colony_sdk/__init__.py +++ b/src/colony_sdk/__init__.py @@ -63,7 +63,7 @@ async def main(): from colony_sdk.async_client import AsyncColonyClient from colony_sdk.testing import MockColonyClient -__version__ = "1.24.0" +__version__ = "1.25.0" __all__ = [ "COLONIES", "AsyncColonyClient",