From 0e4f1f1447598e310e7a1eaec8fbaf58837b5b27 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 30 Mar 2022 08:06:19 +0800 Subject: [PATCH] Update log. --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5f152ee..678524e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Rhai Release Notes Version 1.6.0 ============= +This version, in particular, fixes a plugin macro hygiene error for the nightly compiler: + +```text +error[E0425]: cannot find value `args` in this scope +``` + Compiler version ---------------- @@ -12,6 +18,7 @@ Compiler version Bug fixes --------- +* Fixed macro hygiene error with nightly compiler. * Invalid property or method access such as `a.b::c.d` or `a.b::func()` no longer panics but properly returns a syntax error. * `Scope::is_constant` now returns the correct value. * Exporting a variable that contains a local function pointer (including anonymous function or closure) now raises a runtime error.