Skip to content

Commit 6dbc55c

Browse files
committed
Merge tag 'prepare_1.0.3' into develop
Release 1.0.3
2 parents 27622bc + 2002a54 commit 6dbc55c

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

docs/releases/1.0.3.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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.

docs/releases/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
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.
2425
This 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
2931
1.0.2
3032
1.0.1
3133
1.0.0

statemachine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
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"]

0 commit comments

Comments
 (0)