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

- old
+ new

@@ -54,17 +54,27 @@ ```Ruby # Rakefile require "bump/tasks" # -# if you want to always tag the verison, add: +# if you want to always tag the version, add: # Bump.tag_by_default = true # ``` + + rake bump:current # display current version + # bumping using defaults for `COMMIT`, `TAG`, and `BUNDLE` + rake bump:major rake bump:patch - rake bump:current + rake bump:minor + rake bump:pre + + # bumping with option(s) + rake bump:patch TAG=false BUNDLE=false # commit, but don't tag or run `bundle` + rake bump:patch COMMIT=false TAG=false # don't commit, don't tag + rake bump:minor BUNDLE=false # don't run `bundle` ### Ruby ```Ruby require "bump" Bump::Bump.current # -> "1.2.3"