#commit #summary #generate #git #tool #github #last

app gitrelease

gitrelease 是一个用于生成发布摘要的小型 CLI 工具

2 个版本

0.1.1 2020 年 2 月 11 日
0.1.0 2020 年 2 月 9 日

#2346 in 开发工具

MIT 许可证

19KB
332

GitRelease for rust 是一个入门级项目,它提供了一个用于生成发布摘要的小型 CLI 工具。它从当前的提交历史中学习,并创建一个自上次发布以来的变更的优秀摘要。

请注意,这是一个仅供学习 rust 的玩具项目。

Crates.io Crates.io Build status

快速示例

  1. 这里是一个完整的示例。
$ git clone https://github.com/hyperium/tonic
$ cd tonic
$ gitrelease

输出

:robot: I have created a release \*beep\* \*boop\*
---
### 0.1.2 / 2020-02-09

---
### Commits since last release:

* [Fix 0.1.1 diff link in changelog (#247)](https://github.com/hyperium/tonic/commit/3e63e05666fcb5a099b96236f4d99ffda25f7d57)


### Files edited since last release:

<pre><code>CHANGELOG.md
</code></pre>
[Compare Changes](https://github.com/hyperium/tonic/compare/66ac4c4049f7135a4f6b6d58600a7f1716e1364f...HEAD)


This PR was generated with [GitRelease](https://github.com/hengfengli/gitrelease).
  1. 这里还有一个示例。
$ git clone https://github.com/googleapis/google-cloud-ruby.git

# --dir: the absolute path to your git repo directory.
# --subdir: the sub-directory where related changes happen.
# --submodule: the submodule that you want to release, e.g., a commit title "fix(<submodule_name>): fix a bug.".
$ gitrelease --dir=/<abs_path>/google-cloud-ruby/ --subdir=google-cloud-secret_manager --submodule=secret_manager

输出

:robot: I have created a release \*beep\* \*boop\*
---
### 0.2.1 / 2020-02-09

#### Documentation

* change a few readme references from language to secret-manager
---
### Commits since last release:

* [docs(secret_manager): change a few readme references from language to secret-manager](https://github.com/googleapis/google-cloud-ruby/commit/ede794ccf7cfa2db1a3eb842fcd43bda276e26c2)

### Files edited since last release:

<pre><code>google-cloud-secret_manager/README.md
</code></pre>
[Compare Changes](https://github.com/googleapis/google-cloud-ruby/compare/fe8f239bd97c2bdadb4da5a3012cc4cd738a7efa...HEAD)


This PR was generated with [GitRelease](https://github.com/hengfengli/gitrelease).

致谢

本项目灵感来源于 Release Please,它比这个玩具项目更复杂,功能更丰富。你可能应该考虑在生产中使用它。

依赖项

~15MB
~350K SLoC