Skip to content

Commit

Permalink
Release 0.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
aleneum committed Oct 4, 2021
1 parent d1c11f9 commit 1893a82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

## 0.8.10
## 0.8.10 (October 2021)

Release 0.8.10 is a minor release and contains two bug fixes for the HSM extension and changes how the 'self' literal string is handled.

- Feature #545: The literal 'self' (default model parameter of `Machine`) has been replaced by the class variable `Machine.self_literal = 'self'`. `Machine` now performs an identity check (instead of a value check) with `mod is self.self_literal` to determine whether it should act as a model. While 'self' should still work when passed to the `model` parameter, we encourage using `Machine.self_literal` from now on. This was done to enable easier override of `Machine.__eq__` in subclasses (thanks @VKSolovev).
- Bug #547: Introduce `HierarchicalMachine.prefix_path` to resolve global state names since the HSM stack is not reliable when `queued=True` (thanks @jankrejci)
- Bug #547: Introduce `HierarchicalMachine.prefix_path` to resolve global state names since the HSM stack is not reliable when `queued=True` (thanks @jankrejci).
- Bug #548: `HSM` source states were exited even though they are parents of the destination state (thanks @wes-public-apps).

## 0.8.9 (September 2021)
Expand Down
2 changes: 1 addition & 1 deletion transitions/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
""" Contains the current version of transition which is used in setup.py and can also be used
to determine transitions's version during runtime.
to determine transitions' version during runtime.
"""

__version__ = '0.8.10'

0 comments on commit 1893a82

Please sign in to comment.