All Versions
9
Latest Version
Avg Release Cycle
104 days
Latest Release
1950 days ago
Changelog History
Changelog History
-
v6.1.0 Changes
May 29, 2018๐ Changes since 6.0.0
- โ Add namespacing support #290 @stephenberry
- โ Add utf parsing support
- โก๏ธ cheatsheet.md updates
- ๐
add_class
utility support for scoped enums #306 @StanEpp - ๐ Parser optimizations #300 @niXman
- ๐ Various JSON fixes #377 #400 #409 #371 @totalgee @dinghram @arcoRocks
- ๐ Various cleanups, bugfixes and warning fixes and minor performance improvements
- ๐ Support for C++17 compilers!
- ๐ Support for UTF8 BOM #439 @AlekMosingiewicz @MarioLiebisch
-
v6.0.0 Changes
February 22, 2017๐ Changes since 5.8.6
6.0.0 is a massive rework compared to 5.x. It now requires a C++14 enabled compiler
Compiler Requirements
- MSVC 2015 or greater
- g++ 4.9 or greater
- clang 3.6 or greater
๐ฅ Breaking Changes
- ๐ Instantiating a ChaiScript object now, by default, builds the stdlib in
- This was done to address the most common support issues of loading stdlib dynamically at runtime
- If you want the old behavior, use include/chaiscript/chaiscript_basic.hpp
- ๐ Headers have been reorganized to fully separate stdlib/parser/engine from each other (some faster builds)
- Bootstrap functions no longer return a reference to the module added to (compile time savings)
- It's now no longer possible modify AST_Nodes (compile time, runtime efficiency)
- Function annotations no longer exist (simplifies code, reduces compile time, compile size)
๐ New Features Added
- 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 ) { }
(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
- โ Add helpers for exposing enum classes to ChaiScript
- ๐ Allow typed ChaiScript defined functions to perform conversions on call #303
๐ Improvements
- Compile time improvements
- 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
- File location tracking has been rewritten; this currently means error location reporting is not as good as it was
- โ Tracing capability needs to be tested and vetted
-
v5.8.6 Changes
February 22, 2017๐ Changes since 5.8.5
- โก๏ธ Optimize away
return
statements in lambdas also - ๐ Allow conversions to bool in conditionals
- Don't allow
class
statements inside of scopes - Properly error when a dynamic object non-function member is called
- โก๏ธ Optimize away
-
v5.8.5 Changes
October 10, 2016๐ Changes since 5.8.4
- ๐ Fix order of operations for prefix operators
- ๐ Make sure atomics are initialized properly
- โ Remove parsing of unused prefix
&
operator
-
v5.8.4 Changes
October 10, 2016๐ Changes since 5.8.3
- ๐ Fix case with some numeric conversions mixed with numerics that do not need conversion
-
v5.8.3 Changes
September 16, 2016๐ Changes since 5.8.2
- โ Add support for reference of pointer return types
-
v5.8.2 Changes
September 16, 2016๐ Changes since 5.8.1
- ๐ Allow casting to non-const & std::shared_ptr
-
v5.8.1 Changes
March 05, 2016๐ Changes since 5.8.0
- ๐ Fix parsing of floats to be locale independent #250
- โ Various warning fixes on various platforms
-
v5.8.0 Changes
February 17, 2016๐ Changes since 5.7.1
- ๐ Make all parser iterator operations range checked
- ๐ Parse in-string eval statements once, not once for each execution
- ๐ Fix parsing of operators (ie 1<-1 now parses)
- ๐ Fix variable scoping for functors
- ๐ป Exception reduction
- ๐ Various object lifetime fixes
- โ Add JSON support for load / save #207
- ๐ Numeric overload resolution fixes #209
- ๐ Fix long long #208
- โ Add octal escapes in strings #211
- ๐ Fixed sizing of binary literals #213
- โ Added support for != with bool values #217
- ๐ Various value assignment vector fixes
- ๐ Fixed broken hex escape sequences from @ChristianKaeser
- ๐ Multiply defined symbols fixes #232 @raptorfactor
- โ Add add_class helper #233@vrennert
- ๐ Cheatsheet fixes #235 @mlamby
- ๐ Fix parsing of strings inside of in-string eval statements
- ๐ Allow lower-case global keyword
- ๐ Enable thread-local on MSVC (should be significant performance boost)