Skip to content

Commit

Permalink
Update Readme/Examples; bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Oct 25, 2018
1 parent f55d2ac commit 955bfd7
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 74 deletions.
5 changes: 3 additions & 2 deletions README.md
@@ -1,10 +1,10 @@
# <a name="transitions-module"></a> transitions
[![Version](https://img.shields.io/badge/version-v0.6.9-orange.svg)](https://github.com/pytransitions/transitions)
[![Version](https://img.shields.io/badge/version-v0.7.0-orange.svg)](https://github.com/pytransitions/transitions)
[![Build Status](https://travis-ci.org/pytransitions/transitions.svg?branch=master)](https://travis-ci.org/pytransitions/transitions)
[![Coverage Status](https://coveralls.io/repos/pytransitions/transitions/badge.svg?branch=master&service=github)](https://coveralls.io/github/pytransitions/transitions?branch=master)
[![Pylint](https://img.shields.io/badge/pylint-9.71%2F10-green.svg)](https://github.com/pytransitions/transitions)
[![PyPi](https://img.shields.io/pypi/v/transitions.svg)](https://pypi.org/project/transitions)
[![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)
[![GitHub commits](https://img.shields.io/github/commits-since/pytransitions/transitions/0.6.9.svg)](https://github.com/pytransitions/transitions/compare/0.6.9...master)
[![License](https://img.shields.io/github/license/pytransitions/transitions.svg)](LICENSE)
<!--[![Name](Image)](Link)-->

Expand Down Expand Up @@ -968,6 +968,7 @@ Additional Keywords:
* `title` (optional): Sets the title of the generated image.
* `show_conditions` (default False): Shows conditions at transition edges
* `show_auto_transitions` (default False): Shows auto transitions in graph
* `show_state_attributes` (default False): Show callbacks (enter, exit), tags and timeouts in graph

Transitions can generate basic state diagrams displaying all valid transitions between states. To use the graphing functionality, you'll need to have `pygraphviz` installed:

Expand Down
66 changes: 33 additions & 33 deletions examples/Graph MIxin Demo Nested.ipynb

Large diffs are not rendered by default.

130 changes: 93 additions & 37 deletions examples/Graph MIxin Demo.ipynb

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion tests/test_markup.py
Expand Up @@ -127,7 +127,6 @@ def test_conditions_unless(self):
self.assertEqual(len(t[0]['unless']), 2)



class TestMarkupHierarchicalMachine(TestMarkupMachine):

def setUp(self):
Expand Down
2 changes: 1 addition & 1 deletion transitions/version.py
Expand Up @@ -2,4 +2,4 @@
to determine transitions's version during runtime.
"""

__version__ = '0.6.9'
__version__ = '0.7.0'

0 comments on commit 955bfd7

Please sign in to comment.