diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 923f2fd4..740262aa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,14 @@ Changelog ========= +1.6.1 2020-05-13 +---------------- + +* Fix autopermission creation for flow.View nodes +* Make django-rest-swagger requirements optional +* Fix REST Charts on python 3+ + + 1.6.0 2019-11-19 ---------------- diff --git a/README.rst b/README.rst index 74ff5325..2dc7c33b 100644 --- a/README.rst +++ b/README.rst @@ -124,12 +124,9 @@ Please see `FAQ `_ for Latest changelog ================ -1.6.0 2019-11-19 +1.6.1 2020-05-13 ---------------- -* Django 3.0 support -* Add process.artifact and task.artifact generic fk fields for default models -* Add process.data and task.data generic json field for default models -* Add View().OnCreate(...) callback support -* Allow to overide flow view access by Flow.has_view_permission method - +* Fix autopermission creation for flow.View nodes +* Make django-rest-swagger requirements optional +* Fix REST Charts on python 3+ diff --git a/setup.py b/setup.py index 3c581315..4b6190e1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='django-viewflow', - version='1.6.0', + version='1.6.1', author='Mikhail Podgurskiy', author_email='kmmbvnr@gmail.com', description='Reusable workflow library for django',