From 3b17d8b3eede22a9d7498303a13bd73379978222 Mon Sep 17 00:00:00 2001 From: Bryce Date: Sat, 9 Sep 2023 15:50:48 -0700 Subject: [PATCH] version: 3.1.0 --- README.md | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b6909c2c..208c1bf8 100644 --- a/README.md +++ b/README.md @@ -497,6 +497,10 @@ A: The AI models are cached in `~/.cache/` (or `HUGGINGFACE_HUB_CACHE`). To dele - feature: *api server now has feature parity with the python API*. View the docs at http://127.0.0.1:8000/docs after running `aimg server` - `ImaginePrompt` is now a pydantic model and can thus be sent over the rest API - images are expected in base64 string format +- fix: pin pydantic to 2.0 for now +- build: better python 3.11 incompatibility messaging (fixes #342) +- build: add minimum versions to requirements to improve dependency resolution +- docs: add a discord link **13.0.1** - feature: show full stack trace when there is an api error diff --git a/setup.py b/setup.py index 6e1eadd9..eb87346a 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def get_git_revision_hash() -> str: name="imaginAIry", author="Bryce Drennan", # author_email="b r y p y d o t io", - version="13.0.1", + version="13.1.0", description="AI imagined images. Pythonic generation of images.", long_description=readme, long_description_content_type="text/markdown",