Module: StructuredChangelog::VersionInstanceMethods

Defined in:
lib/structured_changelog/core_ext/gem.rb

Instance Method Summary collapse

Instance Method Details

#bump_majorObject



3
4
5
# File 'lib/structured_changelog/core_ext/gem.rb', line 3

def bump_major
  bump_at_segment_index(0)
end

#bump_minorObject



7
8
9
# File 'lib/structured_changelog/core_ext/gem.rb', line 7

def bump_minor
  bump_at_segment_index(1)
end

#bump_patchObject



11
12
13
# File 'lib/structured_changelog/core_ext/gem.rb', line 11

def bump_patch
  bump_at_segment_index(2)
end