Semver Management Tasks for Gulp
Adapted from https://github.com/ikari-pl/gulp-tag-version
Gulpfile.js
var gulp = require('gulp');
require('gulp-semver-tasks')(gulp);
// or
require('gulp-semver-tasks')(gulp, {versionSource: ['./package.json', './bower.json']});
# This will adjust semver on the configured files, then commit and tag the update.
gulp bump:patch
gulp bump:minor
gulp bump:major