From 3f2fff32358cf39e21b8b440ca87eac9a8e2bade Mon Sep 17 00:00:00 2001 From: Adi Eyal Date: Sat, 11 Nov 2023 10:48:24 +0200 Subject: [PATCH] Bumped version --- __init__.py | 2 +- docs/CHANGELOG.md | 1 + pyproject.toml | 4 ++-- requirements.txt | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index 1a7d60f..92037d0 100644 --- a/__init__.py +++ b/__init__.py @@ -1,5 +1,5 @@ from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS"] diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 034aa08..20dcdd4 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,4 @@ +0.2.1 - Fixed a bug due to a backwards incompatible change in the latest version of dynamicprompts that returns a SampleResult instead of a str 0.2.0 - Nodes now have settable seeds for reproducibility. Thanks to [@romeobuilderotti](https://github.com/romeobuilderotti/) for the inspiration for the inspiration. Also upgraded dynamicprompts to v0.30.1 0.1.3 - Wildcards in the ComfUI root are also supported for backwards compatibility 0.1.2 - The extension now looks for wildcards in custom_nodes/comfyui_dynamicprompts/wildcards diff --git a/pyproject.toml b/pyproject.toml index dd87712..edf1119 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [project] name = "ComfyUI - Dynamic Prompts" -version = "0.2.0" +version = "0.2.1" dependencies = [ - "dynamicprompts[attentiongrabber,magicprompt]~=0.30.1", + "dynamicprompts[attentiongrabber,magicprompt]~=0.30.2", ] [tool.ruff] diff --git a/requirements.txt b/requirements.txt index 6dc72a8..0a6e847 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -dynamicprompts==0.30.1 +dynamicprompts==0.30.2