Release 9.1.0.

This commit is contained in:
Sebastian Schmidt 2023-05-16 18:20:53 +03:00
parent ed6430abed
commit 6d90b0a294
2 changed files with 30 additions and 1 deletions

View File

@ -16,6 +16,35 @@
### Contributors ### 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 ## [9.0.0](https://github.com/ISibboI/evalexpr/compare/8.2.0...9.0.0) - 2023-04-13
### Fixed ### Fixed

View File

@ -1,6 +1,6 @@
[package] [package]
name = "evalexpr" name = "evalexpr"
version = "9.0.0" version = "9.1.0"
description = "A powerful arithmetic and boolean expression evaluator" description = "A powerful arithmetic and boolean expression evaluator"
keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"] keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"]
categories = ["parsing", "game-engines"] categories = ["parsing", "game-engines"]