diff --git a/CHANGELOG.md b/CHANGELOG.md index af8ccbc4..a348cd94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.50.7 (2022-02-11) +### Fix +* Remove base58 dependency ([`f649ff6`](https://github.com/mcbeet/beet/commit/f649ff6dc9c513cde391f2d2396679001fb85d49)) + ## v0.50.6 (2022-01-22) ### Fix * Allow single string value for loading packs ([`6820c64`](https://github.com/mcbeet/beet/commit/6820c64c29d1ebd8a37d1da84c13eb767a3aab43)) diff --git a/beet/__init__.py b/beet/__init__.py index feb41331..8b8f7a9e 100644 --- a/beet/__init__.py +++ b/beet/__init__.py @@ -15,4 +15,4 @@ from .toolchain.tree import * from .toolchain.worker import * -__version__ = "0.50.6" +__version__ = "0.50.7" diff --git a/pyproject.toml b/pyproject.toml index 6d73b2a2..ef121a76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet" -version = "0.50.6" +version = "0.50.7" description = "The Minecraft pack development kit" authors = ["Valentin Berlier "] license = "MIT"