1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
The Changelog
=============
This is a changelog of [funcparserlib][1].
0.3.6, 2013-05-02
-----------------
A maintenance release.
* Python 3 compatibility
* #31 Fixed `many()` that consumed too many tokens in some cases
* #14 More info available in exception objects
0.3.5, 2011-01-13
-----------------
A maintenance release.
* Python 2.4 compatibility
* More readable terminal names for error reporting
* Fixed wrong token positions in lexer error messages
0.3.4, 2009-10-06
-----------------
A maintenance release.
* Switched from `setuptools` to `distutils`
* Fixed importing all symbols from `funcparserlib.lexer`
* Improved `run-tests` utility
0.3.3, 2009-08-03
-----------------
A bugfix release, added more docs.
* Fixed bug in results of skip + skip parsers
* Added FAQ question about infinite loops in parsers
* Debug rule tracing can be enabled again
0.3.2, 2009-07-26
-----------------
A bugfix release, added more docs.
* Fixed some string and number encoding issuses in examples
* Added the Parsing Stages Illustrated page
0.3.1, 2009-07-26
-----------------
Major optimizations (10x faster than the version 0.3), added `forward_decl`,
`pretty_tree`, more docs.
* Added the Nested Brackets Mini-HOWTO
* Added the `pretty_tree` function for creating pseudographic trees
* Added the `forward_decl` function, that performs better than
`with_forward_decls`
* Wrapped parser is called directly without `__call__`, using `run`
* A single immutable input sequence is used in parsers
* The slow `logging` is enabled only when the `debug` flag is set
* Added the project Makefile and this file
0.3, 2009-07-23
---------------
Translated docs into English, added more docs and examples, internal
improvements.
* Added The `funcparserlib` Tutorial
* Translated docs from Russian into English
* Added `pure` and `bind` functions on `Parser`s making them monads
* Added a JSON parser as an example
0.2, 2009-07-07
---------------
Added `with_forward_decls`, internal improvements.
* Added the `with_forward_decls` combinator for dealing with forward
declarations
* Switched to iterative implementation of `many`
* Uncurried parser function type in order to simplify things
* Improvements of the DOT parser
0.1, 2009-06-26
---------------
Initial release.
[1]: http://code.google.com/p/funcparserlib/
|