Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.34.0"
".": "0.35.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
the ANTLR-style `-listener`, `-no-listener`, `-visitor`, and `-no-visitor`
spellings. Use the corresponding double-dash options.

## [0.35.0](https://github.com/ophi-dev/antlr-rust-runtime/compare/v0.34.0...v0.35.0) (2026-08-29)


### Features

* **codegen:** inline trivial pure parser rules before ATN construction ([#352](https://github.com/ophi-dev/antlr-rust-runtime/issues/352)) ([5caa7d3](https://github.com/ophi-dev/antlr-rust-runtime/commit/5caa7d3e3910c157410dd2b3a902202bf4cad5cc))


### Performance Improvements

* **codegen:** encode generated data tables as compact blobs ([#360](https://github.com/ophi-dev/antlr-rust-runtime/issues/360)) ([a056c71](https://github.com/ophi-dev/antlr-rust-runtime/commit/a056c71869ac557efa811eb888c1238d167c2ac9))

## [0.34.0](https://github.com/ophi-dev/antlr-rust-runtime/compare/v0.33.1...v0.34.0) (2026-08-17)


Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "3"

[workspace.package]
# x-release-please-start-version
version = "0.34.0"
version = "0.35.0"
# x-release-please-end
edition = "2024"
rust-version = "1.95"
Expand All @@ -30,11 +30,11 @@ homepage = "https://github.com/ophi-dev/antlr-rust-runtime"

[workspace.dependencies]
# x-release-please-start-version
antlr-rust-runtime = { path = "crates/antlr-rust-runtime", version = "=0.34.0" }
antlr-rust-g4-parser = { path = "crates/antlr-rust-g4-parser", version = "=0.34.0" }
antlr-rust-rs-parser = { path = "crates/antlr-rust-rs-parser", version = "=0.34.0" }
antlr-rust-toml-parser = { path = "crates/antlr-rust-toml-parser", version = "=0.34.0" }
antlr-rust-codegen = { path = "crates/antlr-rust-codegen", version = "=0.34.0" }
antlr-rust-runtime = { path = "crates/antlr-rust-runtime", version = "=0.35.0" }
antlr-rust-g4-parser = { path = "crates/antlr-rust-g4-parser", version = "=0.35.0" }
antlr-rust-rs-parser = { path = "crates/antlr-rust-rs-parser", version = "=0.35.0" }
antlr-rust-toml-parser = { path = "crates/antlr-rust-toml-parser", version = "=0.35.0" }
antlr-rust-codegen = { path = "crates/antlr-rust-codegen", version = "=0.35.0" }
# x-release-please-end
icu_properties = { version = "2.2.0", features = ["alloc"] }
insta = { version = "1", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ For Rust projects, add the runtime crate:

```toml
[dependencies]
antlr-rust-runtime = "0.34.0"
antlr-rust-runtime = "0.35.0"

[build-dependencies]
antlr-rust-codegen = "0.34.0"
antlr-rust-codegen = "0.35.0"
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.34.0
0.35.0
4 changes: 2 additions & 2 deletions crates/antlr-rust-codegen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Use it from a build script:
```toml
# x-release-please-start-version
[dependencies]
antlr-rust-runtime = "0.34.0"
antlr-rust-runtime = "0.35.0"

[build-dependencies]
antlr-rust-codegen = "0.34.0"
antlr-rust-codegen = "0.35.0"
# x-release-please-end
```

Expand Down
4 changes: 2 additions & 2 deletions docs/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ Rust build scripts can instead use the same generation pipeline as a library:

```toml
[dependencies]
antlr-rust-runtime = "0.34.0"
antlr-rust-runtime = "0.35.0"

[build-dependencies]
antlr-rust-codegen = "0.34.0"
antlr-rust-codegen = "0.35.0"
```

<!-- x-release-please-end -->
Expand Down
Loading