Skip to content

Commit

Permalink
chore(release): v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanbruegge committed Jun 11, 2021
1 parent cfb5c04 commit 47cc48a
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# [1.2.0](https://github.com/jvanbruegge/commithelper/compare/1.1.1...1.2.0) (2021-06-11)


### Bug Fixes

* do not skip custom scope question ([a879f50](https://github.com/jvanbruegge/commithelper/commit/a879f5085ed1561dd54d7af991e762cb0c00331f)), closes [#3](https://github.com/jvanbruegge/commithelper/issues/3)
* make breaking change question not swallow whitespace ([cfb5c04](https://github.com/jvanbruegge/commithelper/commit/cfb5c04f2e7c160e3fcbc1bd8bd62ae36cbfdf6c))


### Features

* allow to specify a message for scopes ([9550c42](https://github.com/jvanbruegge/commithelper/commit/9550c4240ae46ee06212b55df3208ff64e2cfc16)), closes [#2](https://github.com/jvanbruegge/commithelper/issues/2)

## [1.1.1](https://github.com/jvanbruegge/commithelper/compare/1.1.0...1.1.1) (2021-03-14)


Expand Down
32 changes: 25 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "commithelper",
"version": "1.1.1",
"version": "1.2.0",
"description": "A tool to create and lint commit messages",
"keywords": [
"commit",
Expand Down Expand Up @@ -29,12 +29,30 @@
"commithelper": {
"scopeOverrides": {
"chore": [
{ "name": "tools", "message": "Changes to tooling like CI or linters" },
{ "name": "refactor", "message": "Changes to the code that have do not change the interface" },
{ "name": "release", "message": "Release a new version, use npm run release for this" },
{ "name": "test", "message": "Add new or update the tests" },
{ "name": "deps", "message": "Changes in the dependencies, e.g. version bumps" },
{ "name": "docs", "message": "Add more documentation" }
{
"name": "tools",
"message": "Changes to tooling like CI or linters"
},
{
"name": "refactor",
"message": "Changes to the code that have do not change the interface"
},
{
"name": "release",
"message": "Release a new version, use npm run release for this"
},
{
"name": "test",
"message": "Add new or update the tests"
},
{
"name": "deps",
"message": "Changes in the dependencies, e.g. version bumps"
},
{
"name": "docs",
"message": "Add more documentation"
}
]
}
},
Expand Down

0 comments on commit 47cc48a

Please sign in to comment.