Skip to content

Commit 11a4a38

Browse files
committed
release 0.6.7
* this is a re-release of 0.6.6 with slightly adapted documentation
1 parent c886252 commit 11a4a38

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

Changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.6.7 (May, 2018)
4+
5+
Release 0.6.7 is identical to 0.6.6. A release had been necessary due to #294 related to PyPI.
6+
37
## 0.6.6 (May, 2018)
48

59
Release 0.6.6 is a minor release and contains several bugfixes and new features:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# <a name="transitions-module"></a> transitions
2-
[![Version](https://img.shields.io/badge/version-v0.6.6-orange.svg)](https://github.com/pytransitions/transitions)
2+
[![Version](https://img.shields.io/badge/version-v0.6.7-orange.svg)](https://github.com/pytransitions/transitions)
33
[![Build Status](https://travis-ci.org/pytransitions/transitions.svg?branch=master)](https://travis-ci.org/pytransitions/transitions)
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.5.svg)](https://github.com/pytransitions/transitions/compare/0.6.5...master)
7+
[![GitHub commits](https://img.shields.io/github/commits-since/pytransitions/transitions/0.6.6.svg)](https://github.com/pytransitions/transitions/compare/0.6.6...master)
88
[![License](https://img.shields.io/github/license/pytransitions/transitions.svg)](LICENSE)
99
<!--[![Name](Image)](Link)-->
1010

@@ -685,7 +685,7 @@ print(lump.state)
685685
>>> initial
686686
```
687687

688-
### <a name="execution-order"> Callback resolution and execution order
688+
### <a name="execution-order"></a>Callback resolution and execution order
689689

690690
As you have probably already realized, the standard way of passing callbacks to states and transitions is by name.
691691
When processing callbacks, Transitions will use the name to retrieve the related callback from the model.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
with open("README.md") as f:
88
# cut the badges from the description and also the TOC which is currently not working on PyPi
9-
long_description = '\n'.join(f.readlines()[49:])
9+
long_description = ''.join(f.readlines()[49:])
1010

1111
if len(set(('test', 'easy_install')).intersection(sys.argv)) > 0:
1212
import setuptools

transitions/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
to determine transitions's version during runtime.
33
"""
44

5-
__version__ = '0.6.6'
5+
__version__ = '0.6.7'

0 commit comments

Comments
 (0)