genchangelog
Generate CHANGELOG.md files from commit history by specifying version numbers and commit ranges to automatically document project changes.
Instructions
【生成 Changelog】根据 commit 历史生成 CHANGELOG.md
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | No | 起始 commit/tag | |
| to | No | 结束 commit/tag(默认 HEAD) | |
| version | No | 版本号(如:v1.2.0) |
Input Schema (JSON Schema)
{
"properties": {
"from": {
"description": "起始 commit/tag",
"type": "string"
},
"to": {
"description": "结束 commit/tag(默认 HEAD)",
"type": "string"
},
"version": {
"description": "版本号(如:v1.2.0)",
"type": "string"
}
},
"required": [],
"type": "object"
}