All Versions
9
Latest Version
Avg Release Cycle
104 days
Latest Release
1950 days ago

Changelog History

  • v6.1.0 Changes

    May 29, 2018

    ๐Ÿ”„ Changes since 6.0.0

  • 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
  • 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)