15
0
forked from pool/python-lark

- update to 1.2.2:

* Bugfix: Earley now respects ambiguity='resolve' again.
- update to 1.2.1:
  * Dropped support for Python versions lower than 3.8
  * Several bugfixes in the Earley algorithm, related to
    suppressed ambiguities
  * Improved performance in `InteractiveParser.accepts()`
  * Give "Shaping the tree" clear sub-headings
  * Fix for when providing a transformer with a Token
  * Pin types-regex to a working version
  * Add Outlines to list of projects using Lark
  * Code coverage: Update Python version
  * Attempt to solve performance problems in accepts()
  * Docs: Added Indenter
  * Clean up test_parser.py, use xFail instead of skip where
    appropriate
  * Update config and drop python < 3.8
  * BUGFIX Earley: Now yielding a previously repressed ambiguity
  * Fix SymbolNode.end for completed tokens
  * Disable ForestToParseTree cache when ambiguity='resolve'
  * Bugfix for issue #1434

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-lark?expand=0&rev=17
This commit is contained in:
2024-10-03 08:32:27 +00:00
committed by Git OBS Bridge
parent 233220b3ae
commit b7c87d24d2
4 changed files with 29 additions and 4 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Thu Oct 3 08:30:59 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.2.2:
* Bugfix: Earley now respects ambiguity='resolve' again.
- update to 1.2.1:
* Dropped support for Python versions lower than 3.8
* Several bugfixes in the Earley algorithm, related to
suppressed ambiguities
* Improved performance in `InteractiveParser.accepts()`
* Give "Shaping the tree" clear sub-headings
* Fix for when providing a transformer with a Token
* Pin types-regex to a working version
* Add Outlines to list of projects using Lark
* Code coverage: Update Python version
* Attempt to solve performance problems in accepts()
* Docs: Added Indenter
* Clean up test_parser.py, use xFail instead of skip where
appropriate
* Update config and drop python < 3.8
* BUGFIX Earley: Now yielding a previously repressed ambiguity
* Fix SymbolNode.end for completed tokens
* Disable ForestToParseTree cache when ambiguity='resolve'
* Bugfix for issue #1434
-------------------------------------------------------------------
Sat Jan 13 20:25:08 UTC 2024 - Dirk Müller <dmueller@suse.com>