File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 1+ # StateMachine 1.0.3
2+
3+ * January 27, 2023*
4+
5+
6+ StateMachine 1.0.3 fixes a bug between {ref}` State ` and {ref}` transition ` instances sharing
7+ references of callbacks when there were multiple concurrent instances of the same ` StateMachine `
8+ class.
9+
10+
11+ ## Bugfixes
12+
13+ - [ #334 ] ( https://github.com/fgmacedo/python-statemachine/issues/334 ) : Fixed a shared reference
14+ of callbacks when there were multiple concurrent instances of the same ` StateMachine ` class.
Original file line number Diff line number Diff line change 11# Release notes
22
3+ Versions follow [ Semantic Versioning] ( https://semver.org/ ) (` <major>.<minor>.<patch> ` ).
34
4- Release notes for the official StateMachine releases.
5- Each release note will tell you what's new in each version, and will also describe any backwards-incompatible changes made in that version .
5+ Backward incompatible (breaking) changes will only be introduced in major versions
6+ with advance notice in the ** Deprecations ** section of releases .
67
78
89## Releases
@@ -24,8 +25,9 @@ Below are release notes through StateMachine and its patch releases.
2425This is the last release series to support Python 2.X series.
2526
2627``` {toctree}
27- :maxdepth: 1
28+ :maxdepth: 2
2829
30+ 1.0.3
29311.0.2
30321.0.1
31331.0.0
Original file line number Diff line number Diff line change 33
44__author__ = """Fernando Macedo"""
55__email__ = "fgmacedo@gmail.com"
6- __version__ = "1.0.2 "
6+ __version__ = "1.0.3 "
77
88__all__ = ["StateMachine" , "State" ]
You can’t perform that action at this time.
0 commit comments