diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a804f970..9d38bd55 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,15 @@ Changelog ========= +django-fsm 2.5.0 2017-03-04 +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- graph_transition command fix for django 1.10 +- graph_transition command supports GET_STATE targets +- signal data extended with method args/kwargs and field +- sets allowed to be passed to the transition decorator + + django-fsm 2.4.0 2016-05-14 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index 1d038367..31cca8bf 100644 --- a/README.rst +++ b/README.rst @@ -411,11 +411,13 @@ your ``INSTALLED_APPS``: Changelog --------- -django-fsm 2.4.0 2016-05-14 +django-fsm 2.5.0 2017-03-04 ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- graph_transition command now works with multiple FSM's per model -- Add ability to set target state from transition return value or callable +- graph_transition command fix for django 1.10 +- graph_transition command supports GET_STATE targets +- signal data extended with method args/kwargs and field +- sets allowed to be passed to the transition decorator diff --git a/setup.py b/setup.py index ec03a636..c9578143 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='django-fsm', - version='2.4.0', + version='2.5.0', description='Django friendly finite state machine support.', author='Mikhail Podgurskiy', author_email='kmmbvnr@gmail.com',