diff --git a/CHANGELOG.md b/CHANGELOG.md index 325bbae..fd116b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.86.1 (2024-01-03) + +### Fix + +* Missing stack pop in dispatch ([`ffb5a8e`](https://github.com/mcbeet/mecha/commit/ffb5a8e8773d30987459bc79524c0b73bcbd7dbc)) + ## v0.86.0 (2023-12-26) ### Feature diff --git a/mecha/__init__.py b/mecha/__init__.py index 67f3504..0ff3ba8 100644 --- a/mecha/__init__.py +++ b/mecha/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.86.0" +__version__ = "0.86.1" from .api import * diff --git a/pyproject.toml b/pyproject.toml index 3320a2f..18ca6e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mecha" -version = "0.86.0" +version = "0.86.1" description = "A powerful Minecraft command library" authors = ["Valentin Berlier "] license = "MIT"