Release v0.7.1
Bug Fix - Dry-run Mode Feedback Parameter
This patch release fixes a bug where trailing feedback arguments were ignored in dry-run and JSON output modes.
Fixed
Dry-run mode now respects feedback parameter
Previously, when using gcop-rs commit --dry-run use conventional commits or gcop-rs commit --json use Chinese, the trailing feedback arguments were silently ignored.
This release fixes the issue by ensuring feedback is properly passed to the LLM in all modes.
Example:
bash
# Now works correctly
$ gcop-rs commit --dry-run use conventional commits format
feat(auth): add user login validation
$ gcop-rs commit --json use Chinese
{
"success": true,
"data": {
"message": "feat(认证): 添加用户登录验证"
}
}Upgrade
bash
# Homebrew
brew upgrade gcop-rs
# Cargo
cargo install gcop-rs
# pip
pip install --upgrade gcop-rs