GitRelease for rust is a starter project, which provides a small cli tool to generate a release summary. It learns from the current commit history and creates a nice summary of changes since last release

Please note that this is a toy project just for learning rust.

Crates.io Crates.io Build status

Quick example

  1. Here is a full working example.

bash $ git clone https://github.com/hyperium/tonic $ cd tonic $ gitrelease

Output:

```markdown

:robot: I have created a release *beep* *boop*

0.1.2 / 2020-02-09


Commits since last release:

Files edited since last release:

CHANGELOG.md

Compare Changes

This PR was generated with GitRelease. ```

  1. There is another working example.

```bash $ 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(): fix a bug.".

$ gitrelease --dir=//google-cloud-ruby/ --subdir=google-cloud-secretmanager --submodule=secretmanager ```

Output:

```markdown

: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:

Files edited since last release:

google-cloud-secret_manager/README.md

Compare Changes

This PR was generated with GitRelease. ```

Credits

This project is inspired by Release Please, which is more sophisticated and has more features than this toy project. You probably should consider to use it in production.