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 =============