diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fb6f833..bcb49887 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.109.2 (2024-12-21) + +### Fix + +* Pack_format for equipment is wrong ([#459](https://github.com/mcbeet/beet/issues/459)) ([`dc44f01`](https://github.com/mcbeet/beet/commit/dc44f01855b0be257b4dd6d0b31c7a8cf76051ae)) + ## v0.109.1 (2024-12-12) ### Fix diff --git a/beet/__init__.py b/beet/__init__.py index 97224a03..171468b5 100644 --- a/beet/__init__.py +++ b/beet/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.109.1" +__version__ = "0.109.2" from .core.cache import * diff --git a/pyproject.toml b/pyproject.toml index e061324a..b6f65f8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet" -version = "0.109.1" +version = "0.109.2" description = "The Minecraft pack development kit" authors = ["Valentin Berlier "] license = "MIT"