Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# grmtools 0.13.9 (2025-02-04)

* Respect the timeout in all stages of error recovery. Previously the timeout
only applied to the first of (several!) stages of error recovery, which could
lead to a comically long time spent in the latter stages.

* Add accessor functions for overly `pub` fields in `lrlex::Rule`. Accessing
the fields directly now causes a deprecation warning.

* New `-d` option for `nimbleparse` outputs the stategraph.


# grmtools 0.13.8 (2024-11-07)

* `%parse-param` can now use types that implement `Clone` (i.e. relaxing the
Expand Down
2 changes: 1 addition & 1 deletion cfgrammar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cfgrammar"
description = "Grammar manipulation"
repository = "https://github.com/softdevteam/grmtools"
version = "0.13.8"
version = "0.13.9"
authors = ["Laurence Tratt <http://tratt.net/laurie/>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion lrlex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lrlex"
description = "Simple lexer generator"
repository = "https://github.com/softdevteam/grmtools"
version = "0.13.8"
version = "0.13.9"
authors = ["Laurence Tratt <http://tratt.net/laurie/>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion lrlex/src/lib/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ where
if !(regex_syntax::is_meta_character(c2)
|| RE_LEX_ESC_LITERAL.is_match(s))
{
break (Some((i, s, j, c2)));
break Some((i, s, j, c2));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion lrpar/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lrpar"
description = "Yacc-compatible parser generator"
repository = "https://github.com/softdevteam/grmtools"
version = "0.13.8"
version = "0.13.9"
authors = ["Lukas Diekmann <http://lukasdiekmann.com/>", "Laurence Tratt <http://tratt.net/laurie/>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion lrtable/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lrtable"
description = "LR grammar table generation"
repository = "https://github.com/softdevteam/grmtools"
version = "0.13.8"
version = "0.13.9"
authors = ["Lukas Diekmann <http://lukasdiekmann.com/>", "Laurence Tratt <http://tratt.net/laurie/>"]
edition = "2021"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion nimbleparse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "nimbleparse"
description = "Simple Yacc grammar debugging tool"
repository = "https://github.com/softdevteam/grmtools"
version = "0.13.8"
version = "0.13.9"
authors = ["Laurence Tratt <http://tratt.net/laurie/>"]
edition = "2021"
readme = "README.md"
Expand Down