diff --git a/CHANGELOG.md b/CHANGELOG.md index 3147925..d1257b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v0.3.0 (2022-11-29) +### Feature +* Add options to configure the name of the ray function and to inline it ([`395a296`](https://github.com/vdvman1/bolt-raycast/commit/395a296d69b5b928e440049c3d6ce21a8ef0a8cf)) +* Default to an empty line in comments ([`d9414a6`](https://github.com/vdvman1/bolt-raycast/commit/d9414a644da57f3fb03a11834d068dc519601a75)) + +### Documentation +* Add comments for example functions that contain multiple examples ([`7ea898f`](https://github.com/vdvman1/bolt-raycast/commit/7ea898f209d526530785f48649189b8668eb169b)) + ## v0.2.0 (2022-11-28) ### Feature * Automatically detect caller path ([`69ef26b`](https://github.com/vdvman1/bolt-raycast/commit/69ef26b6c28375dc482c5bbdf766804b99b98043)) diff --git a/bolt_raycast/__init__.py b/bolt_raycast/__init__.py index 483aca0..40417d2 100644 --- a/bolt_raycast/__init__.py +++ b/bolt_raycast/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.0" +__version__ = "0.3.0" from beet import Context diff --git a/pyproject.toml b/pyproject.toml index 9460e1d..de04ef0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bolt_raycast" -version = "0.2.0" +version = "0.3.0" description = "Easily generate raycasting functions for your datapack using bolt" authors = ["Stefan van der Velden "] license = "MIT"