Skip to content

Commit 2c03f23

Browse files
chore(main): release rable 0.1.16
1 parent 40e6165 commit 2c03f23

5 files changed

Lines changed: 25 additions & 4 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.15"
2+
".": "0.1.16"
33
}

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## [0.1.16](https://github.com/mpecan/rable/compare/rable-v0.1.15...rable-v0.1.16) (2026-04-17)
4+
5+
6+
### Bug Fixes
7+
8+
* **format:** align cmdsub reformatter with bash canonical form ([#49](https://github.com/mpecan/rable/issues/49)) ([c7a4411](https://github.com/mpecan/rable/commit/c7a4411f8628a7a855a550dfe126e070812f108a))
9+
* **lexer:** accept sloppy heredoc terminator in cmdsub mode ([#50](https://github.com/mpecan/rable/issues/50)) ([40f394f](https://github.com/mpecan/rable/commit/40f394fa8bf7d88286ba74d5a57eaffc50cb6b0d))
10+
* **lexer:** disable reserved-word recognition after assignment words ([#44](https://github.com/mpecan/rable/issues/44)) ([42e1fc0](https://github.com/mpecan/rable/commit/42e1fc0365667cac9f24c4ecc15a980e890bb3d4))
11+
* **lexer:** stop treating ]] and unbalanced [...] as special outside conditionals ([#45](https://github.com/mpecan/rable/issues/45)) ([4bf5a5c](https://github.com/mpecan/rable/commit/4bf5a5c13fbb08d9ce7ab4b27fec44627a589116))
12+
* **parser:** fall back from (( … )) arith to nested subshells ([#48](https://github.com/mpecan/rable/issues/48)) ([1437f00](https://github.com/mpecan/rable/commit/1437f00b64d76f372f3851d3d3c044daf8b51c6f))
13+
14+
15+
### Code Refactoring
16+
17+
* **format:** introduce Formatter struct ([#65](https://github.com/mpecan/rable/issues/65)) ([d965a8f](https://github.com/mpecan/rable/commit/d965a8fd30a895de43f07075b6aa31c56acfb28c))
18+
* **lexer:** drop Result<Token> wrapper from operator readers ([#62](https://github.com/mpecan/rable/issues/62)) ([d52a841](https://github.com/mpecan/rable/commit/d52a841a2191357120fbf5953e6a4effb042abcc))
19+
* **lexer:** split read_word_token into classify + advance + dispatch helpers ([#63](https://github.com/mpecan/rable/issues/63)) ([3ba09f5](https://github.com/mpecan/rable/commit/3ba09f51f9b607baf4bc3d407cc17f439982e27b))
20+
* **parser:** extract fill_heredoc_contents visitor helpers ([#68](https://github.com/mpecan/rable/issues/68)) ([40e6165](https://github.com/mpecan/rable/commit/40e616504db6e4f20b8e00ecd0da29aa588e0968))
21+
* **sexp:** dispatch NodeKind Display to per-category helpers ([#66](https://github.com/mpecan/rable/issues/66)) ([44b0330](https://github.com/mpecan/rable/commit/44b033050262d8434232cbd210698cde22d656be))
22+
* **sexp:** table-drive ANSI-C escape dispatch ([#67](https://github.com/mpecan/rable/issues/67)) ([91a5267](https://github.com/mpecan/rable/commit/91a52673cdcc5b499e818dd89a5acfeb00795c11))
23+
324
## [0.1.15](https://github.com/mpecan/rable/compare/rable-v0.1.14...rable-v0.1.15) (2026-04-14)
425

526

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rable"
3-
version = "0.1.15"
3+
version = "0.1.16"
44
edition = "2024"
55
license = "MIT"
66
repository = "https://github.com/mpecan/rable"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "rable"
7-
version = "0.1.15"
7+
version = "0.1.16"
88
description = "A Rust implementation of the Parable bash parser"
99
readme = "README.md"
1010
requires-python = ">=3.12"

0 commit comments

Comments
 (0)