From 1456047c2b3561803d9fc8f1dda3925d18cb2edf Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Tue, 16 Jul 2024 12:43:23 +0300 Subject: [PATCH] Become 1.3.0 --- CHANGELOG.md | 22 +++++++++++++++++++++- leval/__init__.py | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0497f97..76f1c4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,28 @@ ### Changelog +#### [v1.3.0](https://github.com/valohai/leval/compare/v1.2.0...v1.3.0) + +> 16 July 2024 + +- Add tooling for dealing with dashed identifiers; port over common boolean evaluator [`#15`](https://github.com/valohai/leval/pull/15) + +#### [v1.2.0](https://github.com/valohai/leval/compare/v1.1.1...v1.2.0) + +> 29 December 2023 + +- Invalid attribute exception subclass [`#13`](https://github.com/valohai/leval/pull/13) +- Make it possible to opt-out from loose is/is-not operations [`#12`](https://github.com/valohai/leval/pull/12) +- Support None and loose identity operators [`#11`](https://github.com/valohai/leval/pull/11) + +#### [v1.1.1](https://github.com/valohai/leval/compare/v1.1.0...v1.1.1) + +> 28 September 2023 + +- Don't rewrite expression keywords [`#10`](https://github.com/valohai/leval/pull/10) + #### [v1.1.0](https://github.com/valohai/leval/compare/v1.0.0...v1.1.0) -> 26 Sep 2023 +> 26 September 2023 - Add evaluator with expression pre-parse rewriting [`#7`](https://github.com/valohai/leval/pull/7) diff --git a/leval/__init__.py b/leval/__init__.py index c68196d..67bc602 100644 --- a/leval/__init__.py +++ b/leval/__init__.py @@ -1 +1 @@ -__version__ = "1.2.0" +__version__ = "1.3.0"