From 9040ff128e73f1a656d417dd95901241f9f4908b Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 23 Feb 2024 01:19:42 +0000 Subject: [PATCH] 0.47.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 9 +++++++++ bolt/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7bf829..b9724c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ +## v0.47.0 (2024-02-23) + +### Feature + +* Fuse with statements across if statements ([`d93140a`](https://github.com/mcbeet/bolt/commit/d93140a587eb504bf99a3a5dac44dd7694edec70)) +* Fuse with statements ([`d60f460`](https://github.com/mcbeet/bolt/commit/d60f460298955b17ab33efa6e3a17551bd401178)) +* Refactor with statements ([`6770dc9`](https://github.com/mcbeet/bolt/commit/6770dc95bf76ad35dbbc8a7d89d80695282c70ea)) +* Add basic loop overloading ([`497502a`](https://github.com/mcbeet/bolt/commit/497502a1fac66306313d8cb51d802214f4bcd0b2)) + ## v0.46.0 (2024-02-20) ### Feature diff --git a/bolt/__init__.py b/bolt/__init__.py index a551cce..cd8477d 100644 --- a/bolt/__init__.py +++ b/bolt/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.46.0" +__version__ = "0.47.0" from .ast import * diff --git a/pyproject.toml b/pyproject.toml index fb88f2f..934fcdd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bolt" -version = "0.46.0" +version = "0.47.0" description = "Supercharge Minecraft commands with Python" authors = ["Valentin Berlier "] license = "MIT"