diff --git a/CHANGELOG.md b/CHANGELOG.md index e9912c7..e2b8246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ +### v0.11.0 - 2015-02-05 * Adding custom tasks to run before or after bump and release ### v0.10.0 - 2015-01-12 diff --git a/Gruntfile.js b/Gruntfile.js index 8d25dee..cfde6ce 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -13,8 +13,9 @@ module.exports = function(grunt) { options: { bump: true, file: 'package.json', - changelog: 'test/fixtures/_CHANGELOG.md', + changelog: 'CHANGELOG.md', changelogText: '### <%= version %>\n', + commitMessage: 'v<%= version %>', add: true, commit: true, tag: true, diff --git a/package.json b/package.json index 0ae4f30..e80d280 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grunt-release", - "version": "0.10.0", + "version": "0.11.0", "description": "Release a new version of your Node-based project", "main": "Gruntfile.js", "scripts": {