From e342243193da0fa34c212b783dd13f9e1ee8973f Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Wed, 22 Feb 2017 15:33:42 -0700 Subject: [PATCH] Update release notes for 6.0.0 --- releasenotes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/releasenotes.md b/releasenotes.md index 5f4f3eb..9951e75 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -26,7 +26,7 @@ Current Version: 6.0.0 * Modular optimization system; this can be accessed via the ChaiScript_Basic interface * Execution tracing capability; also accessed via ChaiScript_Basic interface -* range-based for loops `for( id : container ) { }` +* range-based for loops `for( id : container ) { }` (much better performance than other loop types) * If-init expressions (ala C++17) * Support for passing r-value references to functions * Support for containing unique_ptr @@ -39,6 +39,7 @@ Current Version: 6.0.0 * Compile size improvements * Significant runtime improvements (see "Modular optimization system") * Significant parser improvements, both with parse-time and parser initialization time (Thanks @niXman) +* Fix type conversion to bool in conditionals #### Improvements Still Need To Be Made