From 5656abbe57b6d16a7ef3cbab5a5fd001a6ae06f7 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 29 Oct 2025 09:21:05 +0200 Subject: [PATCH 1/2] Update changelog. --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a610a04..9f0b293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [13.0.0](https://github.com/ISibboI/evalexpr/compare/12.0.3...13.0.0) - 2025-10-29 + +### Added + + * Function remove_value to HashMapContext (#189) + +### Contributors + +My warmhearted thanks goes to: + + * [Sudo Dios](https://github.com/SudoDios) + ## [12.0.3](https://github.com/ISibboI/evalexpr/compare/12.0.2...12.0.3) - 2025-10-24 ### Fixed From 4a4fdc2b151276155fcadc2decc4e77ae513883a Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 29 Oct 2025 09:21:24 +0200 Subject: [PATCH 2/2] chore: Release evalexpr version 13.0.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b586a1d..74613ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -40,7 +40,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "evalexpr" -version = "12.0.3" +version = "13.0.0" dependencies = [ "rand", "rand_pcg", diff --git a/Cargo.toml b/Cargo.toml index 1f382b3..36124c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "evalexpr" -version = "12.0.3" +version = "13.0.0" description = "A powerful arithmetic and boolean expression evaluator" keywords = ["expression", "evaluate", "evaluator", "arithmetic", "boolean"] categories = ["parsing", "game-engines"]