Commit d9033b49 authored by Igor Dejanovic's avatar Igor Dejanovic

Changelog update + version bump

parent 3f701132
Changelog for Arpeggio Changelog for Arpeggio
====================== ======================
2014-08-16 Release 0.7 * 2014-09-20 Release 0.8
- Parse tree navigation
- Better semantic action debugging output. - Support for eolterm modifier in repetitions.
- Tests reorganization and cleanup. - Support for custom regex match string representation.
- Examples cleanup. - Various bugfixes.
- Reference resolving unification in parser constructions. - Improved debug messages.
- Default semantic actions and automatic terminal suppressing during semantic analysis.
- PEG language support refactoring and code cleaning. * 2014-08-16 Release 0.7
2014-06-06 Release 0.6 - Parse tree navigation
- Support for Python 3 (issue #7) - Better semantic action debugging output.
- Matched rules available as attributes of non-terminals (issue #2) - Tests reorganization and cleanup.
- Lexical rules support (issue #6). Implemented as Combine decorator. - Examples cleanup.
- Reference resolving unification in parser constructions.
2014-02-02 Release 0.5 - Default semantic actions and automatic terminal suppressing during semantic analysis.
- Bugfixes - PEG language support refactoring and code cleaning.
- Examples
- Parse tree reduction for one-child non-terminals. * 2014-06-06 Release 0.6
2009-09-15 - Initial release (v0.1-dev) - Support for Python 3 (issue #7)
Implemented features: - Matched rules available as attributes of non-terminals (issue #2)
- Basic error reporting. - Lexical rules support (issue #6). Implemented as Combine decorator.
- Basic support for comments handling (needs refactoring)
- Raw parse tree. * 2014-02-02 Release 0.5
- Support for semantic actions with abbility to transform parse
tree to semantic representation - aka Abstract Semantic Graphs (see examples). - Bugfixes
- Examples
- Parse tree reduction for one-child non-terminals.
* 2009-09-15 - Initial release (v0.1-dev)
- Basic error reporting.
- Basic support for comments handling (needs refactoring)
- Raw parse tree.
- Support for semantic actions with abbility to transform parse
tree to semantic representation - aka Abstract Semantic Graphs (see examples).
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
############################################################################### ###############################################################################
__author__ = "Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>" __author__ = "Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>"
__version__ = "0.8-dev" __version__ = "0.8"
from setuptools import setup from setuptools import setup
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment