From dd04679a2c0f807207308c9848710a13e9944b68 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Mon, 13 Apr 2026 13:38:22 +0500 Subject: [PATCH] chore(release): bump to 0.25.1 (Windows py3.9 autopilot fix) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Silent patch release. No behavior changes for the happy path — only fixes a false-positive path-traversal error in 'soup autopilot' on Windows + Python 3.9 (commit 670968e) and silences a flaky trl import on windows-latest CI (commit e44e0bd). Upgrade: pip install --upgrade soup-cli Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 2 +- soup_cli/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 230230e..00edc99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "soup-cli" -version = "0.25.0" +version = "0.25.1" description = "Fine-tune LLMs in one command. No SSH, no config hell." readme = "README.md" license = "MIT" diff --git a/soup_cli/__init__.py b/soup_cli/__init__.py index 5380d4f..63a4fba 100644 --- a/soup_cli/__init__.py +++ b/soup_cli/__init__.py @@ -1,3 +1,3 @@ """Soup CLI — Fine-tune LLMs in one command.""" -__version__ = "0.25.0" +__version__ = "0.25.1"