diff --git a/CHANGELOG.md b/CHANGELOG.md index 3efad502..a616029d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.95.2 (2023-10-09) + +### Fix + +* Don't make overlays truthy when they just contain formats declaration ([`1c98097`](https://github.com/mcbeet/beet/commit/1c98097e0c05de51282b628693ad443ba74d28ca)) + ## v0.95.1 (2023-10-07) ### Fix diff --git a/beet/__init__.py b/beet/__init__.py index 9d2666dd..d30772ff 100644 --- a/beet/__init__.py +++ b/beet/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.95.1" +__version__ = "0.95.2" from .core.cache import * diff --git a/pyproject.toml b/pyproject.toml index 570065b3..48a96d8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet" -version = "0.95.1" +version = "0.95.2" description = "The Minecraft pack development kit" authors = ["Valentin Berlier "] license = "MIT"