From 30395808532897f46333171d2c193209b5a9404b Mon Sep 17 00:00:00 2001 From: "repository-butler[bot]" <166800726+repository-butler[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 08:08:52 +0000 Subject: [PATCH] chore(main): release rable 0.2.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2be9c43..af55ef0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.2.0" + ".": "0.2.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cd131f..dce0be8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/mpecan/rable/compare/rable-v0.2.0...rable-v0.2.1) (2026-06-20) + + +### Bug Fixes + +* **lexer:** compute span ends by character count, not byte length ([#72](https://github.com/mpecan/rable/issues/72)) ([58b2e50](https://github.com/mpecan/rable/commit/58b2e50c6f421b83fee04d899ca82b50f7949b43)) + ## [0.2.0](https://github.com/mpecan/rable/compare/rable-v0.1.15...rable-v0.2.0) (2026-04-18) diff --git a/Cargo.lock b/Cargo.lock index 6698ee0..8cb40b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -198,7 +198,7 @@ dependencies = [ [[package]] name = "rable" -version = "0.2.0" +version = "0.2.1" dependencies = [ "pyo3", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index 52bd816..3886890 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rable" -version = "0.2.0" +version = "0.2.1" edition = "2024" license = "MIT" repository = "https://github.com/mpecan/rable" diff --git a/pyproject.toml b/pyproject.toml index 488879f..2f2beed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "rable" -version = "0.2.0" +version = "0.2.1" description = "A Rust implementation of the Parable bash parser" readme = "README.md" requires-python = ">=3.12"