From e30a637f4867b11404a7699d67e19d711502b24a Mon Sep 17 00:00:00 2001 From: Alpamys Date: Thu, 26 Mar 2026 14:53:55 +0500 Subject: [PATCH] chore: bump version to v0.17.1 - Fix outdated __version__ reference in CLAUDE.md (was showing 0.14.2) - Version bump in pyproject.toml, __init__.py, CLAUDE.md, plan.md - All 1369 tests pass, ruff clean, 58.80% coverage --- .claude/CLAUDE.md | 4 ++-- pyproject.toml | 2 +- soup_cli/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude/CLAUDE.md b/.claude/CLAUDE.md index a4eb7fd..2b4e40d 100644 --- a/.claude/CLAUDE.md +++ b/.claude/CLAUDE.md @@ -1,6 +1,6 @@ # Soup CLI — Project CLAUDE.md -Soup is a CLI-first LLM fine-tuning tool (v0.17.0). Python 3.9+, MIT license. +Soup is a CLI-first LLM fine-tuning tool (v0.17.1). Python 3.9+, MIT license. ## Build & Development @@ -16,7 +16,7 @@ ruff check --fix soup_cli/ tests/ # Auto-fix lint issues ``` soup_cli/ cli.py # Entry point, Typer app, all command registration - __init__.py # __version__ = "0.14.2" + __init__.py # __version__ = "0.17.1" config/ schema.py # Pydantic models (SoupConfig, DataConfig, TrainingConfig, LoraConfig) loader.py # YAML -> SoupConfig, load_config_from_string() diff --git a/pyproject.toml b/pyproject.toml index e4f025c..84fdb9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "soup-cli" -version = "0.17.0" +version = "0.17.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 0ce2ebe..c956887 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.17.0" +__version__ = "0.17.1"