From c0221482c8286764e60940a734b4e28694620997 Mon Sep 17 00:00:00 2001 From: "repository-butler[bot]" <166800726+repository-butler[bot]@users.noreply.github.com> Date: Tue, 7 Apr 2026 16:44:49 +0000 Subject: [PATCH] chore(main): release rable 0.1.10 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b5f714f..4a8e97c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.9" + ".": "0.1.10" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8073384..b1042a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.1.10](https://github.com/mpecan/rable/compare/rable-v0.1.9...rable-v0.1.10) (2026-04-07) + + +### Features + +* recognize brace expansion patterns in Word.parts ([fef69dc](https://github.com/mpecan/rable/commit/fef69dce65847c3e67059f97ec44d5bacaac9db6)) +* recognize brace expansion patterns in Word.parts ([#18](https://github.com/mpecan/rable/issues/18)) ([c9fd580](https://github.com/mpecan/rable/commit/c9fd580d379cd518dbf8d33e633e29be5fa90246)) + ## [0.1.9](https://github.com/mpecan/rable/compare/rable-v0.1.8...rable-v0.1.9) (2026-04-07) diff --git a/Cargo.lock b/Cargo.lock index 6f051fd..c4c692a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -198,7 +198,7 @@ dependencies = [ [[package]] name = "rable" -version = "0.1.9" +version = "0.1.10" dependencies = [ "pyo3", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index bbb9744..d428fce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rable" -version = "0.1.9" +version = "0.1.10" edition = "2024" license = "MIT" repository = "https://github.com/mpecan/rable" diff --git a/pyproject.toml b/pyproject.toml index ef9d81b..b288c33 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "rable" -version = "0.1.9" +version = "0.1.10" description = "A Rust implementation of the Parable bash parser" readme = "README.md" requires-python = ">=3.12"