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
9 changes: 9 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# grmtools 0.14.2 (2026-04-30)

* Only initialise internal parser state once at run-time. For programs that
create many new parser instances, this can be a substantial win.

* Improve a number of error messages: several of these were previously
inscrutable.


# grmtools 0.14.1 (2026-01-20)

* Unbreak building of the grmtools book with the latest `mdbook`.
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.14.1"
version = "0.14.2"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
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.14.1"
version = "0.14.2"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
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.14.1"
version = "0.14.2"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
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.14.1"
version = "0.14.2"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
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.14.1"
version = "0.14.2"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
Expand Down