Exception: ConventionalChangelog::LastReleaseNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/conventional_changelog/writer.rb

Constant Summary collapse

MESSAGE =
<<-EOM
Could not determine last tag or release date from existing CHANGELOG.md.
Please specify the last tag (eg. v1.2.3) or release date (eg. 2016-02-14)
manually by setting the environment variable CONVENTIONAL_CHANGELOG_LAST_RELEASE
and running the generate command again.
EOM

Instance Method Summary collapse

Constructor Details

#initialize(message = MESSAGE) ⇒ LastReleaseNotFound

Returns a new instance of LastReleaseNotFound.



13
14
15
# File 'lib/conventional_changelog/writer.rb', line 13

def initialize message = MESSAGE
  super(message)
end