Skip to content

Commit

Permalink
Merge tag '1.0.2' into develop
Browse files Browse the repository at this point in the history
*January 12, 2023*

StateMachine 1.0.2 fixes a regression bug blocking the library usage on
Python 3.11.

- Fixes
[#316](#316) a bad
  import of 'inspect.getargspec' that was removed on Python 3.11,
  still backwards compatible with older versions.
  • Loading branch information
fgmacedo committed Jan 13, 2023
2 parents d436bb7 + 04f7662 commit ff2e6c5
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/auto_examples/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Examples
Below is a gallery of StateMachine examples.


.. tip:: Try Python State Machine directly from your browser!
.. tip:: Try Python State Machine directly from your browser! (experimental)

Run our examples and try hacks right now on this `JupyterLab <../lite/lab/index.html>`_

Expand Down
14 changes: 14 additions & 0 deletions docs/releases/1.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# StateMachine 1.0.2

*January 12, 2023*


StateMachine 1.0.2 fixes a regression bug blocking the library usage on
Python 3.11.


## Bugfixes

- Fixes [#316](https://github.com/fgmacedo/python-statemachine/issues/316) a bad
import of 'inspect.getargspec' that was removed on Python 3.11,
still backwards compatible with older versions.
1 change: 1 addition & 0 deletions docs/releases/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Below are release notes through StateMachine and its patch releases.
```{toctree}
:maxdepth: 1
1.0.2
1.0.1
1.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="python-statemachine",
version="1.0.1",
version="1.0.2",
description="Python Finite State Machines made easy.",
long_description=long_description,
author="Fernando Macedo",
Expand Down
2 changes: 1 addition & 1 deletion statemachine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

__author__ = """Fernando Macedo"""
__email__ = "fgmacedo@gmail.com"
__version__ = "1.0.1"
__version__ = "1.0.2"

__all__ = ["StateMachine", "State"]
2 changes: 1 addition & 1 deletion tests/examples/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Examples
Below is a gallery of StateMachine examples.


.. tip:: Try Python State Machine directly from your browser!
.. tip:: Try Python State Machine directly from your browser! (experimental)

Run our examples and try hacks right now on this `JupyterLab <../lite/lab/index.html>`_

Expand Down

0 comments on commit ff2e6c5

Please sign in to comment.