From e7c05b678cce0b41ddcf394ffc88e8efac3b1e5b Mon Sep 17 00:00:00 2001 From: Mikhail Podgurskiy Date: Wed, 17 Jul 2024 18:08:03 +0500 Subject: [PATCH] Bump version --- README.md | 13 +++++++++++++ setup.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0dd83f1..e9c50e1 100644 --- a/README.md +++ b/README.md @@ -185,6 +185,19 @@ modifications of Viewflow. You can find the commercial license terms in ## Changelog +### 2.2.5 2024-07-17 + +- The 'pattern' widget attribute is now passed to the underlying form input. +- Fixed issue with flow image reload. +- Fixed dashboard max height on pages with long sidebars. +- Added .get_success_url(request) shortcut method to StartViewActivation and + ViewActivation for convenient use in function-based views. +- Fixed duplicated task_finished signal on flow.View completion. +- Enabled callable defaults on jsonstore fields. +- Improved SVG and BPMN export shapes for SplitFirst and Timer Tasks. +- Created cookbook demo for common workflow patterns + + ### 2.2.4 2024-07-12 - Clone data, seed, and artifacts from canceled tasks to revived tasks. diff --git a/setup.py b/setup.py index a6cfef7..be6ce80 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ README = open("README.md", "r", encoding="utf-8").read() setuptools.setup( name="django-viewflow", - version="2.2.4", + version="2.2.5", author_email="kmmbvnr@gmail.com", author="Mikhail Podgurskiy", description="Reusable library to build business applications fast",