From 322ae6440a8ed9e0e93a4215abe64bc2f8050abb Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 5 Feb 2024 16:17:11 +0000 Subject: [PATCH] 0.14.0 Automatically generated by python-semantic-release --- CHANGELOG.md | 14 ++++++++++++++ bolt_expressions/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4321647..9c9faa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ +## v0.14.0 (2024-02-05) + +### Feature + +* Source lazy values and data source operator handlers ([`6832b91`](https://github.com/rx-modules/bolt-expressions/commit/6832b9173d15ae6a88dd9d7d5b21929b459e41e6)) +* Type checking ([`b031303`](https://github.com/rx-modules/bolt-expressions/commit/b0313037e4428dd5e41cc7c608931cf613c6701f)) +* Literal casting ([`9874ca9`](https://github.com/rx-modules/bolt-expressions/commit/9874ca91f2c7045ffc8fbf17b06505984f2870c2)) +* Separate data source interfaces for each nbt type ([`dbe9a74`](https://github.com/rx-modules/bolt-expressions/commit/dbe9a74f31f3c58fb1b34a5069edada983535ec9)) +* Support dicts, lists, arrays and union types ([`1097f5f`](https://github.com/rx-modules/bolt-expressions/commit/1097f5fedf8a7211c5437deeeac50eadd256ae03)) + +### Fix + +* Only cast numeric nbt types ([`86d49b1`](https://github.com/rx-modules/bolt-expressions/commit/86d49b1b257996ded2c5becef223c9e6806b3c6a)) + ## v0.13.1 (2024-01-24) ### Fix diff --git a/bolt_expressions/__init__.py b/bolt_expressions/__init__.py index 1c14466..caf5bd8 100644 --- a/bolt_expressions/__init__.py +++ b/bolt_expressions/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.1" +__version__ = "0.14.0" from .api import * from .exceptions import * diff --git a/pyproject.toml b/pyproject.toml index 2f954c2..e31e30f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bolt-expressions" -version = "0.13.1" +version = "0.14.0" description = "Provides pandas-like expressions capabilities to the bolt extension of mecha" authors = ["rx97", "TheWii"] license = "MIT"