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
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# grmtools 0.15.0 (2026-07-20)

## Breaking changes

* Move from `bincode` to `wincode` for serialisation. This also changes the
feature name that grmtools exposes, hence the major version bump.

## Other changes

* Use the correct default for `DEFAULT_LEX_FLAGS.case_insensitive`.

* Add documentation for the syntax lrlex supports.


# grmtools 0.14.2 (2026-04-30)

* Only initialise internal parser state once at run-time. For programs that
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.2"
version = "0.15.0"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
Expand Down
12 changes: 6 additions & 6 deletions doc/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ doc = false
name = "calc"

[build-dependencies]
cfgrammar = "0.13"
lrlex = "0.13"
lrpar = "0.13"
cfgrammar = "0.15"
lrlex = "0.15"
lrpar = "0.15"

[dependencies]
cfgrammar = "0.13"
lrlex = "0.13"
lrpar = "0.13"
cfgrammar = "0.15"
lrlex = "0.15"
lrpar = "0.15"
```

In this situation we want to statically compile the `.y` grammar and `.l` lexer
Expand Down
6 changes: 3 additions & 3 deletions 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.2"
version = "0.15.0"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
Expand All @@ -24,8 +24,8 @@ _unsealed_unstable_traits = ["_unstable_api"]
vergen = { version = "8", default-features = false, features = ["build"] }

[dependencies]
cfgrammar = { path = "../cfgrammar", version = "0.14" }
lrpar = { path = "../lrpar", version = "0.14" }
cfgrammar = { path = "../cfgrammar", version = "0.15" }
lrpar = { path = "../lrpar", version = "0.15" }

getopts.workspace = true
regex.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions 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.2"
version = "0.15.0"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
Expand All @@ -23,8 +23,8 @@ _unsealed_unstable_traits = ["_unstable_api"]
vergen = { version = "8", default-features = false, features = ["build"] }

[dependencies]
cfgrammar = { path="../cfgrammar", version = "0.14", features = ["wincode"] }
lrtable = { path="../lrtable", version = "0.14", features = ["wincode"] }
cfgrammar = { path="../cfgrammar", version = "0.15", features = ["wincode"] }
lrtable = { path="../lrtable", version = "0.15", features = ["wincode"] }

wincode = { workspace = true, features = ["derive"] }
cactus.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions 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.2"
version = "0.15.0"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
Expand All @@ -17,7 +17,7 @@ name = "lrtable"
path = "src/lib/mod.rs"

[dependencies]
cfgrammar = { path="../cfgrammar", version = "0.14" }
cfgrammar = { path="../cfgrammar", version = "0.15" }

wincode = { workspace = true, features = ["derive"], optional = true }
fnv.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions 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.2"
version = "0.15.0"
edition = "2024"
readme = "README.md"
license = "Apache-2.0/MIT"
Expand All @@ -13,10 +13,10 @@ doc = false
name = "nimbleparse"

[dependencies]
cfgrammar = { path="../cfgrammar", version="0.14" }
lrlex = { path="../lrlex", version="0.14" }
lrpar = { path="../lrpar", version="0.14" }
lrtable = { path="../lrtable", version="0.14" }
cfgrammar = { path="../cfgrammar", version="0.15" }
lrlex = { path="../lrlex", version="0.15" }
lrpar = { path="../lrpar", version="0.15" }
lrtable = { path="../lrtable", version="0.15" }

getopts.workspace = true
num-traits.workspace = true
Expand Down