class ConventionalChangelog::ByVersionWriter

Private Instance Methods

build_new_lines(options) click to toggle source
# File lib/conventional_changelog/by_version_writer.rb, line 9
def build_new_lines(options)
  write_section commits, options[:version]
end
filter_key() click to toggle source
# File lib/conventional_changelog/by_version_writer.rb, line 5
def filter_key
  :since_version
end
version_header_title(id) click to toggle source
# File lib/conventional_changelog/by_version_writer.rb, line 13
def version_header_title(id)
  "#{id} (#{commits[0][:date]})"
end