bin/bump in bump-0.5.0 vs bin/bump in bump-0.5.1

- old
+ new

@@ -15,9 +15,10 @@ bump set 1.2.3 # set the version number to the given value Options: BANNER opts.on("--no-commit", "Do not make a commit.") { options[:commit] = false } + opts.on("--commit-message [MSG]", "Append MSG to the commit message.") {|msg| options[:commit_message] = msg } opts.on("--no-bundle", "Do not bundle.") { options[:bundle] = false } opts.on("--tag", "Create git tag from version (only if commit is true).") { options[:tag] = true } opts.on("-h", "--help","Show this.") { puts opts; exit } end.parse!