diff --git a/CHANGELOG.md b/CHANGELOG.md index 156dbbe5..5bc489b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.48.0 (2021-11-30) +### Feature +* Add LinkManager and refactor a bunch of things ([`b76063f`](https://github.com/mcbeet/beet/commit/b76063f89fffbd89a4f1319b24e75b6feafc4d57)) + ## v0.47.0 (2021-11-29) ### Feature * Add beet.contrib.livereload and --reload option ([`3d56260`](https://github.com/mcbeet/beet/commit/3d5626005f739c5affd5f4d80a863f7cda61c530)) diff --git a/beet/__init__.py b/beet/__init__.py index f3bd9a14..3b6049a1 100644 --- a/beet/__init__.py +++ b/beet/__init__.py @@ -15,4 +15,4 @@ from .toolchain.tree import * from .toolchain.worker import * -__version__ = "0.47.0" +__version__ = "0.48.0" diff --git a/pyproject.toml b/pyproject.toml index 2c0cea8c..832a03d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet" -version = "0.47.0" +version = "0.48.0" description = "The Minecraft pack development kit" authors = ["Valentin Berlier "] license = "MIT"