README.md in bump-0.5.3 vs README.md in bump-0.5.4

- old
+ new

@@ -1,7 +1,7 @@ -[![Build Status](https://travis-ci.org/gregorym/bump.png)](https://travis-ci.org/gregorym/bump) -[![Gem Version](https://badge.fury.io/rb/bump.png)](http://badge.fury.io/rb/bump) +[![Build Status](https://travis-ci.org/gregorym/bump.svg)](https://travis-ci.org/gregorym/bump) +[![Gem Version](https://badge.fury.io/rb/bump.svg)](http://badge.fury.io/rb/bump) # Introduction Bump is a gem that will simplify the way you build gems and chef-cookbooks. @@ -38,20 +38,30 @@ ### --no-bundle If you don't want to run the `bundle` command after bumping, add the `--no-bundle` option. bump patch --no-bundle -### --commit-message [MSG] -If you want to append additional information to the commit message, pass it in using the `--commit-message [MSG]` option. +### --commit-message [MSG], -m [MSG] +If you want to append additional information to the commit message, pass it in using the `--commit-message [MSG]` or `-m [MSG]` option. bump patch --commit-message [no-ci] +or + + bump patch -m [no-cli] + ### Rake ```Ruby # Rakefile require "bump/tasks" + +# +# if you want to always tag the verison, add: +# Bump.tag_by_default = true +# + ``` rake bump:patch rake bump:current @@ -67,13 +77,10 @@ # Supported locations - VERSION file with "1.2.3" - gemspec with `gem.version = "1.2.3"` or `Gem:Specification.new "gem-name", "1.2.3" do` - lib/**/version.rb file with `VERSION = "1.2.3"` - metadata.rb with `version "1.2.3"` - -# Todo - - - `VERSION = "1.2.3"` in lib/*.rb + - `VERSION = "1.2.3"` in lib/**/*.rb # Author Gregory<br/> License: MIT<br/>