diff --git a/Gruntfile.js b/Gruntfile.js index e4a6d187..18545fd3 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -79,24 +79,10 @@ module.exports = function(grunt) { open: true } } - }, - bump: { - options: { - files: ['package.json', 'bower.json'], - commit: true, - commitMessage: 'Release %VERSION%', - commitFiles: ['package.json', 'bower.json'], - createTag: true, - tagName: '%VERSION%', - tagMessage: '%VERSION%', - push: true, - pushTo: 'origin' - } } }); grunt.registerTask('default', ['concat:build', 'connect', 'watch']); grunt.registerTask('build', ['jshint:src', 'concat:build', 'uglify:build']); grunt.registerTask('deploy', ['build', 'gh-pages:deploy']); - grunt.registerTask('release', ['deploy', 'bump']); }; diff --git a/README.md b/README.md index 854c5da9..c144f290 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,6 @@ angular.module('someModule', ['angular-svg-round-progress']) * `grunt` to run a development server. Not mandatory(you can run the build/index.html directly), but more convenient. * `grunt build` to build minified demo in build/ * `grunt deploy` to build minified demo and push it to gh-pages branch -* `grunt release` to bump the version and release ## Credits diff --git a/package.json b/package.json index e1eaa115..dbc4a55d 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,6 @@ "devDependencies": { "connect-livereload": "^0.5.3", "grunt": "^0.4.5", - "grunt-bump": "^0.6.0", "grunt-contrib-concat": "^0.5.0", "grunt-contrib-connect": "^0.11.2", "grunt-contrib-jshint": "^0.11.1",