Skip to content

Commit fb6842f

Browse files
committed
Release 0.6.9
this closes #320
1 parent 9c07adc commit fb6842f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Changelog.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## 0.6.9 ()
3+
## 0.6.9 (October 2018)
4+
5+
Release 0.6.9 is a minor release and contains two bugfixes:
46

57
- Bugfix #314: Do not override already defined model functions with convenience functions (thanks @Arkanayan)
68
- Bugfix #316: `state.Error` did not call parent's `enter` method (thanks @potens1)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Coverage Status](https://coveralls.io/repos/pytransitions/transitions/badge.svg?branch=master&service=github)](https://coveralls.io/github/pytransitions/transitions?branch=master)
55
[![Pylint](https://img.shields.io/badge/pylint-9.71%2F10-green.svg)](https://github.com/pytransitions/transitions)
66
[![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)
88
[![License](https://img.shields.io/github/license/pytransitions/transitions.svg)](LICENSE)
99
<!--[![Name](Image)](Link)-->
1010

tests/test_states.py

-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ class CustomMachine(Machine):
6868
self.assertEqual(m.state, "B")
6969
self.assertTrue(mock_callback.called)
7070

71-
7271
def test_timeout(self):
7372
mock = MagicMock()
7473

0 commit comments

Comments
 (0)