From 7b46c17976ef6c050bb2440340735cbd1596220a Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 8 Apr 2025 13:40:04 -0700 Subject: [PATCH] Release 0.24.1 Refs #879, #897 --- docs/changelog.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index ccd0ceb..c613c78 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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 ` `logs.db` database. [#879](https://github.com/simonw/llm/issues/879) + (v0_24)= ## 0.24 (2025-04-07) diff --git a/setup.py b/setup.py index 7a89e8a..9597bb3 100644 --- a/setup.py +++ b/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():