diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f4aba3..dfd6e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,35 @@ # CHANGELOG +## v0.2.0 (2024-11-22) + +### Chores + +- Fix github action release + ([`6e0d283`](https://github.com/BPR02/Observer/commit/6e0d283250e8daeea710889e4a3b131c323d910d)) + +Workaround for this issue: + https://github.com/python-semantic-release/python-semantic-release/issues/723 + +- Only publish on new release + ([`f13ec64`](https://github.com/BPR02/Observer/commit/f13ec6475a7d5dda2622600b8fe839e08e455aff)) + +- Properly update plugin version + ([`b1d1d6b`](https://github.com/BPR02/Observer/commit/b1d1d6b412c607ec821bc2f001395023a9464df6)) + +- manually update version to 0.1.0 since the github action won't do it rn + +### Features + +- Generate datapack overlays + ([`c03b42c`](https://github.com/BPR02/Observer/commit/c03b42c08f2e669ccee4253d8dd0e33863d58ae9)) + +### Testing + +- Add proper test pipeline + ([`dd086fc`](https://github.com/BPR02/Observer/commit/dd086fc47503372a911302dad76cf8c5088367b2)) + + ## v0.1.0 (2024-11-21) ### Features diff --git a/beet_observer/__init__.py b/beet_observer/__init__.py index b91b38b..e4c58e5 100644 --- a/beet_observer/__init__.py +++ b/beet_observer/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" from .plugin import * diff --git a/pyproject.toml b/pyproject.toml index d96c0b0..2d96e08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "beet-observer" -version = "0.1.0" +version = "0.2.0" description = "A beet plugin to automatically generate overlays from previous datapacks" authors = ["BPR02 "] license = "MIT"