Lark Versions Save

Lark is a parsing toolkit for Python, built with a focus on ergonomics, performance and modularity.

1.1.9

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.8...1.1.9

1.1.8

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.7...1.1.8

1.1.7

9 months ago

Bugfix in propagate_positions (issue #1304)

See: https://github.com/lark-parser/lark/releases/tag/1.1.6

1.1.6

9 months ago

What's Changed - main points

What's Changed - PRs

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.5...1.1.6

1.1.5

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.4...1.1.5

1.1.4

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.3...1.1.4

1.1.3

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.2...1.1.3

1.1.2

2 years ago

Highlights

  • Tree instances now have a pretty print with the "rich" library, when doing rich.print(tree)
  • Bugfix for recursive regexes (with the "regex" library)
  • Refactors, cleanups, and better mypy support

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.1...1.1.2

1.1.1

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/lark-parser/lark/compare/1.1.0...1.1.1

1.1.0

2 years ago
  • Better support for typing and mypy. Includes generic tree typing (Thanks @plannigan!)

  • Improvements to python.lark (walrus operator, slashes in function params, and more). Now parses the entire Python 3.10 lib successfully

  • Bugfixes:

    • Transformer.__default__ not called in tree-less LALR mode (Issue #1029)
    • v_args failed to apply to class under standalone parser (Issue #1059)
    • maybe_placeholders incorrectly accumulated params when it encountered the | operator (Issue #1078)