Release 0.24.1

Refs #879, #897
This commit is contained in:
Simon Willison 2025-04-08 13:40:04 -07:00
parent 56d7f2f13a
commit 7b46c17976
2 changed files with 7 additions and 1 deletions

View file

@ -1,5 +1,11 @@
# Changelog
(v0_24_1)=
## 0.24.1 (2025-04-08)
- Templates can now be specified as a path to a file on disk, using `llm -t path/to/file.yaml`. This makes them consistent with how `-f` fragments are loaded. [#897](https://github.com/simonw/llm/issues/897)
- `llm logs backup /tmp/backup.db` command for {ref}`backing up your <logging-backup>` `logs.db` database. [#879](https://github.com/simonw/llm/issues/879)
(v0_24)=
## 0.24 (2025-04-07)

View file

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os
VERSION = "0.24"
VERSION = "0.24.1"
def get_long_description():