From 0fd4fb4c16165da198a05a812fd8b68e0e268d17 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Fri, 19 Nov 2021 15:04:59 +0800 Subject: [PATCH] Merge changelog. --- CHANGELOG.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 291d56c6..c2d239e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ Bug fixes with breaking script changes * As originally intended, function calls with a bang (`!`) now operates directly on the caller's scope, allowing variables inside the scope to be mutated. * As originally intended, `Engine::XXX_with_scope` API's now properly propagate constants within the provided scope also to _functions_ in the script. +* Printing of integral floating-point numbers is fixed (used to only prints `0.0`). +* `func!()` calls now work properly under `no_closure`. +* Fixed parsing of unary negation such that expressions like `if foo { ... } -x` parses correctly. New features ------------ @@ -37,17 +40,6 @@ Deprecated API's * `From` for `Result>` is deprecated so it will no longer be possible to do `EvalAltResult::ErrorXXXXX.into()` to convert to a `Result`; instead, `Err(EvalAltResult:ErrorXXXXX.into())` must be used. Code is clearer if errors are explicitly wrapped in `Err`. -Version 1.1.3 -============= - -Bug fixes ---------- - -* Printing of integral floating-point numbers is fixed (used to only prints `0.0`). -* `func!()` calls now work properly under `no_closure`. -* Fixed parsing of unary negation such that expressions like `if foo { ... } -x` parses correctly. - - Version 1.1.2 =============