From ad819e32af2c9a514c2f12ff02bdd27572640964 Mon Sep 17 00:00:00 2001 From: Alpamys Date: Wed, 1 Apr 2026 13:58:46 +0500 Subject: [PATCH] chore: bump version to v0.18.1 Post-review fixes since v0.18.0 tag: - Validate model name before ollama rm - Fix reversed mock decorator argument order in tests - Auto-detect chat template in export --deploy path - Add 7 edge-case tests (OSError, timeout, boundary) --- pyproject.toml | 2 +- soup_cli/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e44b834..40d4478 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "soup-cli" -version = "0.18.0" +version = "0.18.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 26e3c86..2b32714 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.18.0" +__version__ = "0.18.1"