Skip to content

Commit

Permalink
docs: add some info about releasing in contributing guidelines
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
kisenka committed Oct 19, 2017
1 parent 11597f3 commit 06bf968
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Table of contents
- [Code contribution](#code-contribution)
- [Setup](#setup)
- [Develop](#develop)
- [Releasing](#releasing)

## Code of conduct

Expand Down Expand Up @@ -118,3 +119,12 @@ Please follow these steps to contribute effectively.
# Delete the local branch
git branch -D my-fix
```

<a name="releasing"></a>
## Releasing

* Commits of type `fix` will trigger bugfix releases, e.g. `0.0.1`.
* Commits of type `feat` will trigger feature releases, e.g. `0.1.0`.
* Commits with `BREAKING CHANGE` in body or footer will trigger breaking releases, e.g. `1.0.0`.

All other commit types will trigger no new release.

0 comments on commit 06bf968

Please sign in to comment.