Skip to content

Commit

Permalink
Fix #8 not bumping to beta by default
Browse files Browse the repository at this point in the history
  • Loading branch information
rdumont committed Mar 13, 2014
1 parent 438a200 commit b4e01c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/releasy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function(opts) {

var versionProvider = this.steps.pickVersionProvider(opts.filename);

var config = this.steps.setup(versionProvider, opts.type, opts.stable ? 'stable' : opts.tagName);
var config = this.steps.setup(versionProvider, opts.type, opts.stable ? 'stable' : opts['tag-name']);
if (!opts.quiet) {
console.log("Old version: " + config.oldVersion.bold);
console.log("New version: " + config.newVersion.bold.yellow);
Expand Down

0 comments on commit b4e01c6

Please sign in to comment.