mirror of
https://github.com/Hopiu/llm.git
synced 2026-05-16 01:33:10 +00:00
parent
56d7f2f13a
commit
7b46c17976
2 changed files with 7 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -1,7 +1,7 @@
|
|||
from setuptools import setup, find_packages
|
||||
import os
|
||||
|
||||
VERSION = "0.24"
|
||||
VERSION = "0.24.1"
|
||||
|
||||
|
||||
def get_long_description():
|
||||
|
|
|
|||
Loading…
Reference in a new issue