Skip to content

Commit

Permalink
add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Dec 14, 2018
1 parent 5f7960f commit a2bf681
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog

## v0.0.5 (13/12/2018)
- [bump package version](https://github.com/alandtse/spdx-diff/commit/5f7960f5da6aa1349ff1db8d61ea84daed5fc47a) - @alandtse
- [Add further checks to load list prior to compare](https://github.com/alandtse/spdx-diff/commit/4ef3a51cf2fa3c463ecc404da0d5fb3add5643eb) - @alandtse

---

## v0.0.4 (13/12/2018)
- [bump package version](https://github.com/alandtse/spdx-diff/commit/ae87d1a52ac6c49b040702ab89f4bfed78f70a09) - @alandtse

Expand All @@ -13,7 +19,7 @@

---

## v0.0.2 (07/11/2018)
## v0.0.2 (26/10/2018)
- [bump package version](https://github.com/alandtse/spdx-diff/commit/33529dfd54ee3725004a9e4ad7c9ece2a309b68f) - @alandtse
- [Move addListeners to top level to resolve #3](https://github.com/alandtse/spdx-diff/commit/555da1c90c5d8b8ebca62639edcdc33f921575e6) - @alandtse

Expand Down
1 change: 0 additions & 1 deletion tasks/build.js
Expand Up @@ -12,7 +12,6 @@ gulp.task('build', gulpSequence(
'images',
'fonts',
'ossattribution',
'changelog',
'chromereload'
]
))
17 changes: 15 additions & 2 deletions tasks/changelog.js
@@ -1,9 +1,22 @@
import gulp from 'gulp'
import tagVersion from 'gulp-tag-version'
import git from 'gulp-git'

var exec = require('child_process').exec;

gulp.task('changelog',() => {
exec('gren c --override', function (err, stdout, stderr) {
gulp.task('changelog', () => {
exec('gren c --generate --override -B -t all', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
});
return gulp.src([
'package.json',
], {
base: './'
})
// commit the changelog
.pipe(git.commit('add changelog'))

// **tag it in the repository**
.pipe(tagVersion())
})

0 comments on commit a2bf681

Please sign in to comment.