grunt-bump
grunt-bump copied to clipboard
Grunt.js plugin - Increment package version.
Hello :), thank you very much for the cool helper - I was just about to write something similar, before I had the luck to find your plugin. It saved...
added option `gitPushOptions` added option `gitPushTagOptions` An interesting use case is for instance if you have a `pre-push` git hook that runs your tests *and* CI that doesn't let you...
Not sure if this is a bug or just a lack of knowledge from my side :) I start with version `3.4.0`. Running `grunt bump:git` updates the version to that:...
When I run the bump it successfully bumps the version in the package but other items relying on the version get undefined instead of a version number. Here's my bump...
I have configured the releaseName as 'rc', like prereleaseName: 'rc' if my current version is 0.3.24 and I perform grunt bump:prepatch the new version is 0.3.25-rc.0, that's ok The problem...
Hi, First of all, `grunt-bump` is totally amazing! In my app we have both production and staging, we want to use `grunt-bump` to manage versions in both environments. Currently I...
I have a need to issue the git tag commands in a particular directory different than the directory where the grunt commands are issued. Can you add cwd support to...
Instead of the regex to read the JSON file, it should be read in, modified then written back out: ``` javascript var jsonPath = 'path/to/file.json'; var json = require(jsonPath); json...
Implementation for this feature request: https://github.com/vojtajina/grunt-bump/issues/131 Improvement to support setting the regex per file group. Backwards compatible with the old notation. New Notation: ``` files: [ { path: 'index.html', regexp:...
In WordPress plugin development, the version number is in various files, at least the following: - package.json (version: "1.0.0") - readme.txt (Stable release: 1.0.0) - my-plugin.php (Plugin version: 1.0.0) What...