- New `async` Machine keyword allows queueing of transitions (thanks to khigia) - New `name` Machine keyword customizes transitions logger output for easier debugging of multiple running instances - New `prepare` Transition keyword for callbacks before any 'conditions' are checked (thanks to TheMysteriousX) - New `show_conditions` GraphSupport keyword adds condition checks to dot graph edges (thanks to khigia) - Nesting now supports custom (unicode) substate separators - Nesting no longer requires a leaf state (e.g. to_C() does not enter C_1 automatically) - Factory for convenient extension mixins - Numerous minor improvements and bug fixes
0.4.0
0.3.1
Mostly a bug fix release. Changes include:
- Fixes graphing bug introduced in 0.3.0 (thanks to wtgee) - Fixes bug in dynamic addition of before/after callbacks (though this is a currently undocumented feature) - Adds coveralls support and badge - Adds a few tests to achieve near-100% coverage
0.3
- Support for nested states (thanks to aleneum) - Basic multithreading support for function access (thanks to aleneum) - Basic graphing support via graphviz (thanks to svdgraaf) - Stylistic edits, minor fixes, and improvements to README - Expanded and refactored tests - Minor bug fixes
0.3.0
0.2.9
- Enabled pickling in Python 3.4 (and in < 3.4 with the dill module) - Added reference to generating Transition in EventData objects - Fixed minor bugs