From 515dde3e7a00d98c77d2e8823b27b083b1e16718 Mon Sep 17 00:00:00 2001 From: Santiago Date: Sun, 24 May 2026 16:04:06 -0300 Subject: [PATCH] chore(release): bump tx3-sdk to 0.12.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aligns the python-sdk package version with the fleet's 0.12 release train (rust-sdk workspace is already at 0.12.0). The unified Tx3ClientBuilder landed in #13 and is a breaking change — per sdks/sdk-spec/release-policy.md any change to MAJOR or MINOR must be coordinated across all SDKs. Bumps both pyproject.toml `version` and the runtime `__version__` constant in tx3_sdk/__init__.py. Co-Authored-By: Claude Opus 4.7 (1M context) --- sdk/pyproject.toml | 2 +- sdk/src/tx3_sdk/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/pyproject.toml b/sdk/pyproject.toml index 44b343d..fbb7901 100644 --- a/sdk/pyproject.toml +++ b/sdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tx3-sdk" -version = "0.11.0" +version = "0.12.0" description = "Tx3 SDK for Python" readme = "README.md" license = { text = "Apache-2.0" } diff --git a/sdk/src/tx3_sdk/__init__.py b/sdk/src/tx3_sdk/__init__.py index 11c9227..b66c240 100644 --- a/sdk/src/tx3_sdk/__init__.py +++ b/sdk/src/tx3_sdk/__init__.py @@ -35,4 +35,4 @@ "coerce_arg", ] -__version__ = "0.11.0" +__version__ = "0.12.0"