Skip to content

Commit 61ccc1f

Browse files
committed
Merge tag 'v2.3.2' into develop
*July 01, 2024* Observers are now rebranded to {ref}`listeners`. With expanted support for adding listeners when instantiating a state machine. This allows covering more use cases. We also improved the async support.
2 parents f43cfc1 + e48bde7 commit 61ccc1f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/releases/2.3.2.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# StateMachine 2.3.2
22

3-
*Not released yet*
3+
*July 01, 2024*
44

55
## What's new in 2.3.2
66

77
Observers are now rebranded to {ref}`listeners`. With expanted support for adding listeners when
8-
instantiating a state machine. This allows covering more use cases.
8+
instantiating a state machine. This allows covering more use cases. We also improved the async support.
99

1010
### Improved async support
1111

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.1"
3+
version = "2.3.2"
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.1"
6+
__version__ = "2.3.2"
77

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

0 commit comments

Comments
 (0)