diff --git a/CHANGELOG.md b/CHANGELOG.md index 8733c15a..eb212969 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v0.3.0 (2020-12-22) +### Feature +* Add function_header plugin ([`bb73eee`](https://github.com/vberlier/beet/commit/bb73eeef0d984ca80cfd378ab2b0a99d89a33d47)) + +### Fix +* Rename inline plugins ([`a6b7aaa`](https://github.com/vberlier/beet/commit/a6b7aaa60d97bf203d771861effc0ee61425786d)) + +### Documentation +* Add module docstring to inline plugins ([`d829d89`](https://github.com/vberlier/beet/commit/d829d89c815c15b34dd51ac6e3a68d563906b3c4)) + ## v0.2.2 (2020-12-21) ### Fix * Trigger release to update readme ([`d409af5`](https://github.com/vberlier/beet/commit/d409af56d4c82da5d3c2743a158128cb4ed0b062)) diff --git a/beet/__init__.py b/beet/__init__.py index 8a6835d8..99afea94 100644 --- a/beet/__init__.py +++ b/beet/__init__.py @@ -11,4 +11,4 @@ from .toolchain.project import * from .toolchain.template import * -__version__ = "0.2.2" +__version__ = "0.3.0" diff --git a/pyproject.toml b/pyproject.toml index 67e990a6..e59ba9b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet" -version = "0.2.2" +version = "0.3.0" description = "The Minecraft pack development kit" authors = ["Valentin Berlier "] license = "MIT"