From 13c92cc6809c0facf8f75440d35e13a4445a86a3 Mon Sep 17 00:00:00 2001 From: "ophiarch[bot]" <261688785+ophiarch[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 12:39:18 +0000 Subject: [PATCH] chore(main): release 0.13.0 --- .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 971fb7a9..1a2d0c0d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.0" + ".": "0.13.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index dde4c3f8..7f33b652 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.13.0](https://github.com/ophi-dev/antlr-rust-runtime/compare/v0.12.0...v0.13.0) (2026-07-19) + + +### Features + +* SIMD optimization ([#120](https://github.com/ophi-dev/antlr-rust-runtime/issues/120)) ([c8775c2](https://github.com/ophi-dev/antlr-rust-runtime/commit/c8775c2252d4b263588ed86f752bfa5c849010c9)) + ## [0.12.0](https://github.com/ophi-dev/antlr-rust-runtime/compare/v0.11.0...v0.12.0) (2026-07-18) ### Added diff --git a/Cargo.lock b/Cargo.lock index aab19e8f..effffbdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "antlr-rust-runtime" -version = "0.12.0" +version = "0.13.0" dependencies = [ "memchr", "pretty_assertions", diff --git a/Cargo.toml b/Cargo.toml index 9d83425f..1abe5f56 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "antlr-rust-runtime" -version = "0.12.0" +version = "0.13.0" 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 3399616e..4be9a27e 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ For Rust projects, add the runtime crate: ```toml [dependencies] -antlr-rust-runtime = "0.12.0" +antlr-rust-runtime = "0.13.0" ```