Skip to content

Commit 97e4576

Browse files
committed
release: New 2.3.6 release doc
1 parent e4a2092 commit 97e4576

4 files changed

Lines changed: 12 additions & 2 deletions

File tree

docs/releases/2.3.6.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# StateMachine 2.3.6
2+
3+
*September 11, 2024*
4+
5+
6+
## Bugfixes in 2.3.6
7+
8+
- Fixes [#474](https://github.com/fgmacedo/python-statemachine/issues/474) install with extra was not working to install `pydot`.
9+
- Fixes [#480](https://github.com/fgmacedo/python-statemachine/issues/480) error when trying to trigger an event inside the initial callback.

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.6
1819
2.3.5
1920
2.3.4
2021
2.3.3

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

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

0 commit comments

Comments
 (0)