Skip to content

Commit 490b86b

Browse files
committed
Merge tag 'v2.3.3' into develop
*July 3, 2024* - Fixes [#457](#457) regression that caused backwards incomplatible changes when using Enums. Thanks [@hperrey](https://github.com/hperrey)! Deprecations that will be removed on the next major release: - The `States.from_enum(..., use_enum_instance=True)` will be the default. ```{seealso} See {ref}`States from Enum types` for more details. ```
2 parents 17b3759 + 66b0efb commit 490b86b

4 files changed

Lines changed: 23 additions & 2 deletions

File tree

docs/releases/2.3.3.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# StateMachine 2.3.3
2+
3+
*July 3, 2024*
4+
5+
6+
## Bugfixes in 2.3.3
7+
8+
- Fixes [#457](https://github.com/fgmacedo/python-statemachine/issues/457) regression that caused backwards incomplatible changes when using Enums. Thanks [@hperrey](https://github.com/hperrey)!
9+
10+
11+
12+
## Deprecation notes in 2.3.3
13+
14+
Deprecations that will be removed on the next major release:
15+
16+
- The `States.from_enum(..., use_enum_instance=True)` will be the default.
17+
18+
```{seealso}
19+
See {ref}`States from Enum types` for more details.
20+
```

docs/releases/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Below are release notes through StateMachine and its patch releases.
1515
```{toctree}
1616
:maxdepth: 2
1717
18+
2.3.3
1819
2.3.2
1920
2.3.1
2021
2.3.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-statemachine"
3-
version = "2.3.2"
3+
version = "2.3.3"
44
description = "Python Finite State Machines made easy."
55
authors = ["Fernando Macedo <fgmacedo@gmail.com>"]
66
maintainers = [

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__ = "2.3.2"
6+
__version__ = "2.3.3"
77

88
__all__ = ["StateMachine", "State"]

0 commit comments

Comments
 (0)