CHANGELOG.md in ripper_ruby_parser-1.1.2 vs CHANGELOG.md in ripper_ruby_parser-1.2.0

- old
+ new

@@ -1,6 +1,25 @@ # Change log +## 1.2.0 / 2018-01-12 + +* Improve code quality +* Document public API +* Speed improvements + - Process line numbers only once per parse run + - Reduce arbitrary conditionals + - Use deconstruction to split up block +* Improve intermediate s-expressions, reducing the number of typeless + expressions. +* Use SexpBuilder base class, giving more low-level access to the structure + created by Ripper. +* Support Ruby 2.5 +* Improve handling of boolean operators with parenthes +* Improve compatibility for begin..end blocks used as method and operator + arguments. +* Drop support for Ruby 2.0 and 2.1 +* Handle `__ENCODING__` constant. + ## 1.1.2 / 2017-10-07 * Fix support for newer Ruby syntax - Handle optional keyword arguments - Handle mandatory keyword arguments (Ruby 2.1 and up)