All Versions
28
Latest Version
Avg Release Cycle
592 days
Latest Release
2109 days ago

Changelog History
Page 2

  • v0.6.3.1 Changes

    • ๐Ÿ— Build-tools field is added to Cabal file.
  • v0.6.2 Changes

    • base dependency is relaxed for GHC 7.10. Note that alex version >3.1.4 is required to compile with GHC 7.10.
  • v0.6.2.1 Changes

    • ๐Ÿ“ฆ Missing test files are added to Cabal package.
  • v0.6.1 Changes

    • Generic and NFData instances are implemented for syntax trees.
  • v0.6.0 Changes

    • ๐Ÿ›  Fixed a long string literal parsing bug which was causing long strings to terminate at wrong points.
    • \z escape characters in strings are now scanned and interpreted correctly.
    • โœ… This is first version that parses all of Lua 5.2.2 test suite.
  • v0.5.0 Changes

    • ๐Ÿ“œ 2-years-old operator parsing bug fixed. Chained/nested operator expressions are now properly parsed.
  • v0.4.6 Changes

    • Language.Lua.Annotated.Lexer module exposed.
  • v0.4.5 Changes

    • ๐Ÿ›  Fixed a bug that made lexer accept invalid escape sequences in strings.
    • ๐Ÿ“œ Strings are now interpreted -- string "\n" is now parsed to Haskell string "\n", instead of "\\n".
    • ๐Ÿ›  Fixed character code parsing.
  • v0.4.4 Changes

    • ๐Ÿ–จ Printer now takes operator precedences into account while printing Binop and Unop expressions and prints parenthesis as necessary.
    • ๐Ÿ–จ Printer now does not put line break in Binop expressions.
  • v0.4.3 Changes

    • Data and Typeable instances are implemented for syntax tree.