zfish 0.1.10

Ultra-light, zero-dependency Rust CLI framework for building beautiful command-line applications
<!-- 
Thanks for contributing to ZFish! ๐Ÿฆˆ
Please fill out this template to help us review your PR quickly.
-->

## ๐Ÿ“‹ Description

<!-- Provide a clear and concise description of what this PR does -->



## ๐Ÿ”— Related Issue

<!-- Link to the issue this PR addresses -->
Fixes #(issue number)
<!-- or -->
Closes #(issue number)
<!-- or -->
Related to #(issue number)

## ๐ŸŽฏ Type of Change

<!-- Mark the relevant option with an 'x' -->

- [ ] ๐Ÿ› Bug fix (non-breaking change which fixes an issue)
- [ ] โœจ New feature (non-breaking change which adds functionality)
- [ ] ๐Ÿ’ฅ Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] ๐Ÿ“š Documentation update
- [ ] ๐ŸŽจ Code style update (formatting, renaming)
- [ ] โ™ป๏ธ Refactoring (no functional changes)
- [ ] โšก Performance improvement
- [ ] โœ… Test update
- [ ] ๐Ÿ”ง Build/CI configuration change
- [ ] ๐Ÿ”’ Security fix

## ๐Ÿ“ Changes Made

<!-- List the main changes in this PR -->

- 
- 
- 

## ๐Ÿงช Testing

### Test Environment

<!-- Mark all that apply -->

- [ ] ๐Ÿง Linux
- [ ] ๐ŸชŸ Windows
- [ ] ๐ŸŽ macOS

### Testing Done

<!-- Describe the tests you ran and how to reproduce them -->

- [ ] All existing tests pass (`cargo test`)
- [ ] Added new tests for changes
- [ ] Manually tested on: <!-- specify OS/platform -->
- [ ] Tested with examples: <!-- list which examples -->

### Test Output

<details>
<summary>Click to expand test results</summary>

```bash
# Paste relevant test output here
cargo test
```

</details>

## ๐Ÿ“ธ Screenshots (if applicable)

<!-- Add screenshots or terminal output demonstrating the changes -->

**Before:**
<!-- Screenshot or description of behavior before changes -->

**After:**
<!-- Screenshot or description of behavior after changes -->

## โœ… Checklist

<!-- Mark completed items with an 'x' -->

### Code Quality

- [ ] My code follows the [Rust coding style]https://doc.rust-lang.org/1.0.0/style/
- [ ] I have performed a self-review of my code
- [ ] I have commented my code in hard-to-understand areas
- [ ] My code passes `cargo clippy --all-targets -- -D warnings` with no warnings
- [ ] My code is formatted with `cargo fmt --all`

### Testing

- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally (`cargo test`)
- [ ] I have tested on multiple platforms (if applicable)

### Documentation

- [ ] I have updated the documentation (rustdoc comments)
- [ ] I have updated the README.md (if needed)
- [ ] I have updated CHANGELOG.md (for significant changes)
- [ ] I have added/updated examples (if needed)

### Compatibility

- [ ] My changes are compatible with MSRV (Rust 1.90.0)
- [ ] My changes maintain zero external dependencies
- [ ] My changes work on Windows, Linux, and macOS

### Commits

- [ ] My commits follow the [Conventional Commits]https://www.conventionalcommits.org/ format
- [ ] Each commit has a clear and descriptive message

## ๐Ÿ” Additional Context

<!-- Add any other context about the PR here -->



## ๐Ÿ“š References

<!-- Add links to relevant documentation, issues, or discussions -->

- 
- 

## ๐Ÿค” Questions for Reviewers

<!-- Any specific areas you'd like feedback on? -->



---

<!-- 
By submitting this PR, you agree that your contributions will be 
licensed under the MIT License.
-->