diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a46f218..b5f714f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.8" + ".": "0.1.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 34a521c..8073384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.9](https://github.com/mpecan/rable/compare/rable-v0.1.8...rable-v0.1.9) (2026-04-07) + + +### Features + +* decompose parameter expansions into Word.parts ([b0ad648](https://github.com/mpecan/rable/commit/b0ad64831b8fdafee3d466fa4193b720c742185c)) +* decompose parameter expansions into Word.parts ([#17](https://github.com/mpecan/rable/issues/17)) ([ded6897](https://github.com/mpecan/rable/commit/ded6897868f4dab44170c5a3a01052fcb6b6e976)) + + +### Bug Fixes + +* resolve clippy errors in tree-sitter comparison test ([789da4d](https://github.com/mpecan/rable/commit/789da4d1b39a6afc8776fc73dd7933fcad9b4abe)) +* resolve clippy errors in tree-sitter comparison test ([#15](https://github.com/mpecan/rable/issues/15)) ([26570f9](https://github.com/mpecan/rable/commit/26570f9968ac94e68a9534550db956ce94aff382)) + ## [0.1.8](https://github.com/mpecan/rable/compare/rable-v0.1.7...rable-v0.1.8) (2026-03-25) diff --git a/Cargo.lock b/Cargo.lock index 0dfbec3..6f051fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -198,7 +198,7 @@ dependencies = [ [[package]] name = "rable" -version = "0.1.8" +version = "0.1.9" dependencies = [ "pyo3", "thiserror", diff --git a/Cargo.toml b/Cargo.toml index 890c041..bbb9744 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rable" -version = "0.1.8" +version = "0.1.9" edition = "2024" license = "MIT" repository = "https://github.com/mpecan/rable" diff --git a/pyproject.toml b/pyproject.toml index faa6609..ef9d81b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "rable" -version = "0.1.8" +version = "0.1.9" description = "A Rust implementation of the Parable bash parser" readme = "README.md" requires-python = ">=3.12"