File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 0.6.9 ()
3
+ ## 0.6.9 (October 2018)
4
+
5
+ Release 0.6.9 is a minor release and contains two bugfixes:
4
6
5
7
- Bugfix #314 : Do not override already defined model functions with convenience functions (thanks @Arkanayan )
6
8
- Bugfix #316 : ` state.Error ` did not call parent's ` enter ` method (thanks @potens1 )
Original file line number Diff line number Diff line change 4
4
[ ![ Coverage Status] ( https://coveralls.io/repos/pytransitions/transitions/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/pytransitions/transitions?branch=master )
5
5
[ ![ Pylint] ( https://img.shields.io/badge/pylint-9.71%2F10-green.svg )] ( https://github.com/pytransitions/transitions )
6
6
[ ![ PyPi] ( https://img.shields.io/pypi/v/transitions.svg )] ( https://pypi.org/project/transitions )
7
- [ ![ GitHub commits] ( https://img.shields.io/github/commits-since/pytransitions/transitions/0.6.8.svg )] ( https://github.com/pytransitions/transitions/compare/0.6.8 ...master )
7
+ [ ![ GitHub commits] ( https://img.shields.io/github/commits-since/pytransitions/transitions/0.6.8.svg )] ( https://github.com/pytransitions/transitions/compare/0.6.9 ...master )
8
8
[ ![ License] ( https://img.shields.io/github/license/pytransitions/transitions.svg )] ( LICENSE )
9
9
<!-- [](Link)-->
10
10
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ class CustomMachine(Machine):
68
68
self .assertEqual (m .state , "B" )
69
69
self .assertTrue (mock_callback .called )
70
70
71
-
72
71
def test_timeout (self ):
73
72
mock = MagicMock ()
74
73
You can’t perform that action at this time.
0 commit comments