class GitVersionBumper::VersionBumper::MajorVersionBumper

Implementation of Bumper that increases the major version number.

Private Instance Methods

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