Skip to content

Commit

Permalink
Merge tag "v2.3.2" into develop
Browse files Browse the repository at this point in the history
*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.
  • Loading branch information
fgmacedo committed Jul 1, 2024
2 parents f43cfc1 + e48bde7 commit 61ccc1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/releases/2.3.2.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# StateMachine 2.3.2

*Not released yet*
*July 01, 2024*

## What's new in 2.3.2

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

### Improved async support

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "python-statemachine"
version = "2.3.1"
version = "2.3.2"
description = "Python Finite State Machines made easy."
authors = ["Fernando Macedo <[email protected]>"]
maintainers = [
Expand Down
2 changes: 1 addition & 1 deletion statemachine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

__author__ = """Fernando Macedo"""
__email__ = "[email protected]"
__version__ = "2.3.1"
__version__ = "2.3.2"

__all__ = ["StateMachine", "State"]

0 comments on commit 61ccc1f

Please sign in to comment.