Skip to content

Commit 8995d9c

Browse files
committed
Release 0.8.0
(this time for real)
1 parent fd79f08 commit 8995d9c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Changelog.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Changelog
22

3-
## 0.8.0 (February 2020)
3+
## 0.8.0 (March 2020)
44

55
Release 0.8.0 is a major release and introduces asyncio support for Python 3.7+, parallel state support and some bugfixes
66

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
89
- Feature: Introduced `AsyncMachine` (see discussion #259); note that async HSMs are not yet supported
910
- Feature #390: String callbacks can now point to properties and attributes (thanks @jsenecal)
1011
- Bugfix: Auto transitions are added multiple times when add_states is called more than once

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![License](https://img.shields.io/github/license/pytransitions/transitions.svg)](LICENSE)
99
<!--[![Name](Image)](Link)-->
1010

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+.
1212

1313
## Installation
1414

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
setup(
2424
name="transitions",
2525
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.",
2727
long_description=long_description,
2828
long_description_content_type="text/markdown",
2929
author='Tal Yarkoni',
@@ -51,6 +51,7 @@
5151
'Programming Language :: Python :: 3.5',
5252
'Programming Language :: Python :: 3.6',
5353
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
5455
],
5556
**extra_setuptools_args
5657
)

0 commit comments

Comments
 (0)