File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 0.8.0 (February 2020)
3
+ ## 0.8.0 (March 2020)
4
4
5
5
Release 0.8.0 is a major release and introduces asyncio support for Python 3.7+, parallel state support and some bugfixes
6
6
7
- - Feature: ` HierarchicalStateMachine ` has been rewritten to support parallel states. Please have a look at the ReadMe.md to check what has changed.
7
+ - Feature: ` HierarchicalMachine ` has been rewritten to support parallel states. Please have a look at the ReadMe.md to check what has changed.
8
+ + The previous version can be found in ` transitions.extensions.nesting_legacy ` for now
8
9
- Feature: Introduced ` AsyncMachine ` (see discussion #259 ); note that async HSMs are not yet supported
9
10
- Feature #390 : String callbacks can now point to properties and attributes (thanks @jsenecal )
10
11
- Bugfix: Auto transitions are added multiple times when add_states is called more than once
Original file line number Diff line number Diff line change 8
8
[ ![ License] ( https://img.shields.io/github/license/pytransitions/transitions.svg )] ( LICENSE )
9
9
<!-- [](Link)-->
10
10
11
- A lightweight, object-oriented state machine implementation in Python. Compatible with Python 2.7+ and 3.0+.
11
+ A lightweight, object-oriented state machine implementation in Python with many extensions . Compatible with Python 2.7+ and 3.0+.
12
12
13
13
## Installation
14
14
Original file line number Diff line number Diff line change 23
23
setup (
24
24
name = "transitions" ,
25
25
version = __version__ ,
26
- description = "A lightweight, object-oriented Python state machine implementation." ,
26
+ description = "A lightweight, object-oriented Python state machine implementation with many extensions ." ,
27
27
long_description = long_description ,
28
28
long_description_content_type = "text/markdown" ,
29
29
author = 'Tal Yarkoni' ,
51
51
'Programming Language :: Python :: 3.5' ,
52
52
'Programming Language :: Python :: 3.6' ,
53
53
'Programming Language :: Python :: 3.7' ,
54
+ 'Programming Language :: Python :: 3.8' ,
54
55
],
55
56
** extra_setuptools_args
56
57
)
You can’t perform that action at this time.
0 commit comments