From a7e8f6b78b46f7880846746be7c5f2378397eff7 Mon Sep 17 00:00:00 2001 From: "ophiarch[bot]" <261688785+ophiarch[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 17:59:32 +0000 Subject: [PATCH] chore(main): release 0.15.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cbf14acb..4368a958 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.15.0" + ".": "0.15.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b83ff6a..b42e6272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.15.1](https://github.com/ophi-dev/antlr-rust-runtime/compare/v0.15.0...v0.15.1) (2026-07-23) + + +### Bug Fixes + +* restore fast Java parsing with typed contexts ([#175](https://github.com/ophi-dev/antlr-rust-runtime/issues/175)) ([865ac8f](https://github.com/ophi-dev/antlr-rust-runtime/commit/865ac8f768656f9a0308399fc8d9fbd1e277fad1)) + ## [0.15.0](https://github.com/ophi-dev/antlr-rust-runtime/compare/v0.14.2...v0.15.0) (2026-07-23) diff --git a/Cargo.lock b/Cargo.lock index 269e523a..157ff6dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "antlr-rust-runtime" -version = "0.15.0" +version = "0.15.1" dependencies = [ "hmac-sha256", "icu_casemap", diff --git a/Cargo.toml b/Cargo.toml index 88e82a85..a44369cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "antlr-rust-runtime" -version = "0.15.0" +version = "0.15.1" edition = "2024" rust-version = "1.95" description = "High performance Rust runtime and target support for ANTLR v4 generated parsers" diff --git a/README.md b/README.md index d426093d..6b158859 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ For Rust projects, add the runtime crate: ```toml [dependencies] -antlr-rust-runtime = "0.15.0" +antlr-rust-runtime = "0.15.1" ```