Release 0.19.1

Refs #667
This commit is contained in:
Simon Willison 2024-12-05 13:47:28 -08:00
parent 491dd9b437
commit b8e8052229
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,10 @@
# Changelog
(v0_19_1)=
## 0.19.1 (2024-12-05)
- FIxed bug where `llm.get_models()` and `llm.get_async_models()` returned the same model multiple times. [#667](https://github.com/simonw/llm/issues/667)
(v0_19)=
## 0.19 (2024-12-01)

View file

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