Bump version

This commit is contained in:
Mikhail Podgurskiy
2024-07-17 18:08:03 +05:00
parent cf2290f588
commit e7c05b678c
2 changed files with 14 additions and 1 deletions

View File

@@ -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.

View File

@@ -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",