Skip to content

Release v0.7.1

Bug 修复 - Dry-run 模式支持 Feedback 参数

本次补丁版本修复了尾随 feedback 参数在 dry-run 和 JSON 输出模式下被忽略的问题。

修复

Dry-run 模式现在正确处理 feedback 参数

此前,使用 gcop-rs commit --dry-run use conventional commitsgcop-rs commit --json use Chinese 时,尾随的 feedback 参数会被静默忽略。

本次发布修复了此问题,确保 feedback 在所有模式下都能正确传递给 LLM。

示例:

bash
# 现在可以正常工作
$ 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(认证): 添加用户登录验证"
  }
}

升级

bash
# Homebrew
brew upgrade gcop-rs

# Cargo
cargo install gcop-rs

# pip
pip install --upgrade gcop-rs