From f6f7f64d4ace67beaf92d8f2bf50eea06aaeec36 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 6 May 2022 00:47:21 +0000 Subject: [PATCH] 0.5.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 8 ++++++++ bolt/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc1ac05..2867fe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v0.5.0 (2022-05-06) +### Feature +* Iterable/mapping unpacking in json/nbt interpolation ([`32acee0`](https://github.com/mcbeet/bolt/commit/32acee0e8bbf2c831fa48c30595b63ed61f1de40)) +* Unpack field for interpolation node ([`b2f6dd7`](https://github.com/mcbeet/bolt/commit/b2f6dd7017afe5c7ebc4c530f152b666c7557ba1)) + +### Fix +* Converter for json object ([`825f077`](https://github.com/mcbeet/bolt/commit/825f077e14bafdf719f4f488347714b5761886ac)) + ## v0.4.2 (2022-05-02) ### Fix * Update mecha to fix indent bug ([`006a57a`](https://github.com/mcbeet/bolt/commit/006a57a4ff0f0e99af106e235440c5c7b06f1f71)) diff --git a/bolt/__init__.py b/bolt/__init__.py index c2c88b6..43444a6 100644 --- a/bolt/__init__.py +++ b/bolt/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.2" +__version__ = "0.5.0" from .ast import * diff --git a/pyproject.toml b/pyproject.toml index 46d371b..48786de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bolt" -version = "0.4.2" +version = "0.5.0" description = "Supercharge Minecraft commands with Python" authors = ["Valentin Berlier "] license = "MIT"