mirror of https://github.com/razor-ai/soup.git
chore: bump version to v0.20.1
Bugfix release: ANSI-safe CI test assertions (macOS fix), path confinement hardening, circular import fix, rate limiting implementation, trust_remote_code warning, new terracotta logo + Web UI color scheme.
This commit is contained in:
parent
3247dfb1b1
commit
d6a7e3f816
|
|
@ -1,6 +1,6 @@
|
|||
# Soup CLI — Project CLAUDE.md
|
||||
|
||||
Soup is a CLI-first LLM fine-tuning tool (v0.20.0). Python 3.9+, MIT license.
|
||||
Soup is a CLI-first LLM fine-tuning tool (v0.20.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.20.0"
|
||||
__init__.py # __version__ = "0.20.1"
|
||||
config/
|
||||
schema.py # Pydantic models (SoupConfig, DataConfig, TrainingConfig, LoraConfig, EvalConfig)
|
||||
loader.py # YAML -> SoupConfig, load_config_from_string()
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ We provide security updates for the following versions:
|
|||
- **Versions older than 3 minor versions:** No support
|
||||
|
||||
Example:
|
||||
- v0.20.0-0.20.x → Full support (latest)
|
||||
- v0.20.1-0.20.x → Full support (latest)
|
||||
- v0.19.0-0.19.x → Bug-fix support only
|
||||
- v0.18.x and below → No support
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "soup-cli"
|
||||
version = "0.20.0"
|
||||
version = "0.20.1"
|
||||
description = "Fine-tune LLMs in one command. No SSH, no config hell."
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
"""Soup CLI — Fine-tune LLMs in one command."""
|
||||
|
||||
__version__ = "0.20.0"
|
||||
__version__ = "0.20.1"
|
||||
|
|
|
|||
Loading…
Reference in New Issue