Skip to content

Latest commit

 

History

History
32 lines (17 loc) · 1005 Bytes

CHANGELOG.md

File metadata and controls

32 lines (17 loc) · 1005 Bytes

Changelog

All notable changes to antlr-calculator are documented here.

v2.4.0:

  • Square [] and curly {} parentheses are now also valid for formulas. They are only used to group expressions, and implicit multiplication like 2(3)=6 is not allowed with those

v2.3.0:

  • Added support for ranges, e.g. #START..#END to implement custom sum logic

v2.2.0:

  • Added support for Min and Max formulas

v2.1.0:

  • The calculator now supports trailing comments in a formula, separated by a semicolon ; at the end of the actual formula input. For example, 1 + 2; Hello World! now just evaluates 1 + 2 and ignores everything after the semicolon ;
  • Add support for substitutions in formulas

v2.0.4:

  • The internal check for null or empty formulas was changed for better compatibility with Node

v2.0.3:

  • Automatic creation of GitHub releases was added

v2.0.0:

  • The library was updated to use the Antlr TypeScript target instead of the older JavaScript package