Skip to content

Commit f5f36cf

Browse files
authored
Merge pull request #485 from ltratt/grmtools_0_13_9
Prepare a 0.13.9 release.
2 parents 6967d50 + c2f6221 commit f5f36cf

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# grmtools 0.13.9 (2025-02-04)
2+
3+
* Respect the timeout in all stages of error recovery. Previously the timeout
4+
only applied to the first of (several!) stages of error recovery, which could
5+
lead to a comically long time spent in the latter stages.
6+
7+
* Add accessor functions for overly `pub` fields in `lrlex::Rule`. Accessing
8+
the fields directly now causes a deprecation warning.
9+
10+
* New `-d` option for `nimbleparse` outputs the stategraph.
11+
12+
113
# grmtools 0.13.8 (2024-11-07)
214

315
* `%parse-param` can now use types that implement `Clone` (i.e. relaxing the

cfgrammar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cfgrammar"
33
description = "Grammar manipulation"
44
repository = "https://github.com/softdevteam/grmtools"
5-
version = "0.13.8"
5+
version = "0.13.9"
66
authors = ["Laurence Tratt <http://tratt.net/laurie/>"]
77
edition = "2021"
88
readme = "README.md"

lrlex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lrlex"
33
description = "Simple lexer generator"
44
repository = "https://github.com/softdevteam/grmtools"
5-
version = "0.13.8"
5+
version = "0.13.9"
66
authors = ["Laurence Tratt <http://tratt.net/laurie/>"]
77
edition = "2021"
88
readme = "README.md"

lrlex/src/lib/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ where
520520
if !(regex_syntax::is_meta_character(c2)
521521
|| RE_LEX_ESC_LITERAL.is_match(s))
522522
{
523-
break (Some((i, s, j, c2)));
523+
break Some((i, s, j, c2));
524524
}
525525
}
526526
}

lrpar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lrpar"
33
description = "Yacc-compatible parser generator"
44
repository = "https://github.com/softdevteam/grmtools"
5-
version = "0.13.8"
5+
version = "0.13.9"
66
authors = ["Lukas Diekmann <http://lukasdiekmann.com/>", "Laurence Tratt <http://tratt.net/laurie/>"]
77
edition = "2021"
88
readme = "README.md"

lrtable/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lrtable"
33
description = "LR grammar table generation"
44
repository = "https://github.com/softdevteam/grmtools"
5-
version = "0.13.8"
5+
version = "0.13.9"
66
authors = ["Lukas Diekmann <http://lukasdiekmann.com/>", "Laurence Tratt <http://tratt.net/laurie/>"]
77
edition = "2021"
88
readme = "README.md"

nimbleparse/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "nimbleparse"
33
description = "Simple Yacc grammar debugging tool"
44
repository = "https://github.com/softdevteam/grmtools"
5-
version = "0.13.8"
5+
version = "0.13.9"
66
authors = ["Laurence Tratt <http://tratt.net/laurie/>"]
77
edition = "2021"
88
readme = "README.md"

0 commit comments

Comments
 (0)