From 6d90b0a2940650a8798c418ef7c4996e6731e406 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Tue, 16 May 2023 18:20:53 +0300 Subject: [PATCH] Release 9.1.0. --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6164f3f..7b3c587 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,35 @@ ### Contributors +## [9.1.0](https://github.com/ISibboI/evalexpr/compare/9.0.0...9.1.0) - 2023-05-16 + +### Added + +* Builtin functions `contains` and `contains_any` (#127) + +### Contributors + +My warmhearted thanks goes to: + +* [nickisyourfan](https://github.com/nickisyourfan) + +## [8.2.0](https://github.com/ISibboI/evalexpr/compare/8.1.0...8.2.0) - 2023-04-13 + +### Added + +* `EvalExprError` now derives `Clone` (#116) + +### Changed + +* Occurrences of `f64` and `i64` have been replaced with the type aliases `FloatType` and `IntType` where applicable (#113) + +### Contributors + +My warmhearted thanks goes to: + +* [Natan Freeman](https://github.com/NatanFreeman) +* [Claus Matzinger](https://github.com/celaus) + ## [9.0.0](https://github.com/ISibboI/evalexpr/compare/8.2.0...9.0.0) - 2023-04-13 ### Fixed diff --git a/Cargo.toml b/Cargo.toml index f1c0c18..ca89b04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evalexpr" -version = "9.0.0" +version = "9.1.0" description = "A powerful arithmetic and boolean expression evaluator" keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"] categories = ["parsing", "game-engines"]