From 28b6e213924a4152760ea6a6fdba1ceaaf7a4af9 Mon Sep 17 00:00:00 2001 From: Santiago Date: Sat, 8 Aug 2026 22:01:21 -0300 Subject: [PATCH] chore: release 0.15.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Coordinated fleet cut per `sdk-spec/release-policy.md` ("All SDKs MUST share the same MAJOR.MINOR release train"): rust and web carry API changes this train, so python moves with them. This SDK's own delta since 0.14.0 is the byte-array encoder fix (#22). Also pins the codegen template's dependency to the released train instead of `git+...@main` — generated clients tracked the branch, so they could not reproduce a build or resolve a version. Co-Authored-By: Claude Opus 5 (1M context) --- .trix/client-lib/requirements.txt.hbs | 2 +- sdk/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.trix/client-lib/requirements.txt.hbs b/.trix/client-lib/requirements.txt.hbs index 62f88c1..e42e07b 100644 --- a/.trix/client-lib/requirements.txt.hbs +++ b/.trix/client-lib/requirements.txt.hbs @@ -6,4 +6,4 @@ httpx==0.28.1 idna==3.10 sniffio==1.3.1 -git+https://github.com/tx3-lang/python-sdk.git@main#egg=tx3-sdk&subdirectory=sdk +tx3-sdk>=0.15.0,<0.16.0 diff --git a/sdk/pyproject.toml b/sdk/pyproject.toml index fa672f2..e812c0f 100644 --- a/sdk/pyproject.toml +++ b/sdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tx3-sdk" -version = "0.14.0" +version = "0.15.0" description = "Tx3 SDK for Python" readme = "README.md" license = { text = "Apache-2.0" }