From 4638983afda3aa80c6a27c59f1864603c52703dc Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Thu, 25 Feb 2021 17:52:56 +0800 Subject: [PATCH] Rename RELEASES to CHANGELOG. --- RELEASES.md => CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename RELEASES.md => CHANGELOG.md (99%) diff --git a/RELEASES.md b/CHANGELOG.md similarity index 99% rename from RELEASES.md rename to CHANGELOG.md index fc50ab94..4206d411 100644 --- a/RELEASES.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ Breaking changes * For plugin functions, constants passed to methods (i.e. `&mut` parameter) now raise an error unless the functions are marked with `#[rhai_fn(pure)]`. * Visibility (i.e. `pub` or not) for generated _plugin_ modules now follow the visibility of the underlying module. -* Comparison operators between the sames types now throw errors when they're not defined instead of returning the default. Only comparing between _different_ types will return the default. +* Comparison operators between the sames types or different _numeric_ types now throw errors when they're not defined instead of returning the default. Only comparing between _different_ types will return the default. * Default stack-overflow and top-level expression nesting limits for release builds are lowered to 64 from 128. New features