Skip to content

Commit 47cc48a

Browse files
committed
chore(release): v1.2.0
1 parent cfb5c04 commit 47cc48a

File tree

2 files changed

+38
-7
lines changed

2 files changed

+38
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# [1.2.0](https://github.com/jvanbruegge/commithelper/compare/1.1.1...1.2.0) (2021-06-11)
2+
3+
4+
### Bug Fixes
5+
6+
* do not skip custom scope question ([a879f50](https://github.com/jvanbruegge/commithelper/commit/a879f5085ed1561dd54d7af991e762cb0c00331f)), closes [#3](https://github.com/jvanbruegge/commithelper/issues/3)
7+
* make breaking change question not swallow whitespace ([cfb5c04](https://github.com/jvanbruegge/commithelper/commit/cfb5c04f2e7c160e3fcbc1bd8bd62ae36cbfdf6c))
8+
9+
10+
### Features
11+
12+
* allow to specify a message for scopes ([9550c42](https://github.com/jvanbruegge/commithelper/commit/9550c4240ae46ee06212b55df3208ff64e2cfc16)), closes [#2](https://github.com/jvanbruegge/commithelper/issues/2)
13+
114
## [1.1.1](https://github.com/jvanbruegge/commithelper/compare/1.1.0...1.1.1) (2021-03-14)
215

316

package.json

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "commithelper",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "A tool to create and lint commit messages",
55
"keywords": [
66
"commit",
@@ -29,12 +29,30 @@
2929
"commithelper": {
3030
"scopeOverrides": {
3131
"chore": [
32-
{ "name": "tools", "message": "Changes to tooling like CI or linters" },
33-
{ "name": "refactor", "message": "Changes to the code that have do not change the interface" },
34-
{ "name": "release", "message": "Release a new version, use npm run release for this" },
35-
{ "name": "test", "message": "Add new or update the tests" },
36-
{ "name": "deps", "message": "Changes in the dependencies, e.g. version bumps" },
37-
{ "name": "docs", "message": "Add more documentation" }
32+
{
33+
"name": "tools",
34+
"message": "Changes to tooling like CI or linters"
35+
},
36+
{
37+
"name": "refactor",
38+
"message": "Changes to the code that have do not change the interface"
39+
},
40+
{
41+
"name": "release",
42+
"message": "Release a new version, use npm run release for this"
43+
},
44+
{
45+
"name": "test",
46+
"message": "Add new or update the tests"
47+
},
48+
{
49+
"name": "deps",
50+
"message": "Changes in the dependencies, e.g. version bumps"
51+
},
52+
{
53+
"name": "docs",
54+
"message": "Add more documentation"
55+
}
3856
]
3957
}
4058
},

0 commit comments

Comments
 (0)