lang-bootstrap/06/lpeglabel/HISTORY
Dawid Sobczak e6b88d5a0f Add stage 06: Lua bootstrap
The goal of stage 06 is to try parse zig synax in lua. I pulled in
lpeglable 1.2.0 and parser-gen off github to get started. All of this
needs to be cleaned up rather soon.

Lua boostraps using tcc and musl from the previous stage. Since musl
0.6.0 doesn't support dynamic linking this build of lua doesn't support
shared libraries. I couldn't easily patch musl with dlopen and friends
so instead I link statically and call deps with c api.
2023-07-06 12:32:47 +01:00

32 lines
1 KiB
Text

HISTORY for LPegLabel 1.2.0-1
* Changes from version 1.1.0-1 to 1.2.0-1
---------------------------------
+ fixes bug when reporting the error position of an ordinary failure
+ reports the farthest failure position for ordinary failures
* Changes from version 1.0.0-1 to 1.1.0-1
---------------------------------
+ new semantics of lpeglabel.Rec
- labeled ordered choice removed
+ examples updated
* Changes from version 0.12.2-2 to 1.0.0-1
---------------------------------
+ base code updated to LPeg 1.0
+ new functions: lpeglabel.Rec and relabel.calcline
+ improved documentation
+ new examples
+ some bugs fixed
* Changes from version 0.12.2-1 to 0.12.2-2
---------------------------------
+ in case of a failure, "match" also returns a suffix of the input
+ improved error reporting for "relabel", thanks to Matthew Allen
+ limit of labels increased from 32 to 64, thanks to André Maidl
+ compiles with Lua 5.1, thanks to Matthew Allen
+ the throw operator now throws only one label
+ some bugs fixed