class GitVersionBumper::VersionBumper::MinorVersionBumper

Implementation of Bumper that increases the minor version number.

Private Instance Methods

tag() click to toggle source
# File lib/git_version_bumper/version_bumper/minor_version_bumper.rb, line 9
def tag
  git.add_tag("v#{current_major_version}.#{current_minor_version + 1}.0")
end