Skip to content

Commit 1ef51cb

Browse files
committed
[added] Changelog generation from commit messages
1 parent 13baeaa commit 1ef51cb

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

CONTRIBUTING.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Contributing
2+
3+
We welcome community support with both pull requests and reporting bugs. Please
4+
don't hesitate to jump in.
5+
6+
## Tests
7+
8+
All commits that fix bugs or add features need a test.
9+
10+
## Commit Subjects for Public API Changes
11+
12+
If your patch **changes the API or fixes a bug** please use one of the following
13+
prefixes in your commit subject:
14+
15+
- `[fixed] ...`
16+
- `[changed] ...`
17+
- `[added] ...`
18+
- `[removed] ...`
19+
20+
That ensures the subject line of your commit makes it into the auto-generated
21+
changelog. Do not use these tags if your change doesn't fix a bug and doesn't
22+
change the public API.
23+
24+
### When using `[changed]` or `[removed]`...
25+
26+
Please include an upgrade path with example code in the commit message. If it
27+
doesn't make sense to do this, then it doesn't make sense to use `[changed]` or
28+
`[removed]` :). For further reading on writing a well formed commit message,
29+
check out these [5 useful tips for a better commit
30+
message](http://robots.thoughtbot.com/5-useful-tips-for-a-better-commit-message)
31+
32+
## Docs
33+
34+
Please update the docs with any API changes, the code and docs should always be
35+
in sync.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
"react-async": "~2.0.0",
5959
"react-router-component": "git://github.com/STRML/react-router-component#react-0.12",
6060
"requirejs": "~2.1.9",
61+
"rf-changelog": "^0.4.0",
6162
"semver": "~2.0.7",
6263
"sinon": "^1.10.3"
6364
}
64-
}
65+
}

tools/release/tasks.js

+9-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,14 @@ module.exports = function(grunt) {
5656
next();
5757
},
5858

59+
// Generate Changelog
60+
function(next) {
61+
execSeries([
62+
['node_modules/.bin/changelog', ['-t', 'v' + version]],
63+
['git', ['add', path.join(repoRoot, 'CHANGELOG.md')]],
64+
], next);
65+
},
66+
5967
// Add and commit
6068
function(next) {
6169
execSeries([
@@ -109,7 +117,7 @@ module.exports = function(grunt) {
109117

110118
function(next) {
111119
ReleaseRepo(docsRepo, docsRoot, tmpDocsRepo, version, next);
112-
},
120+
}
113121

114122
], complete);
115123
});

0 commit comments

Comments
 (0)