diff options
author | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-10-01 12:15:59 +0300 |
---|---|---|
committer | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-10-01 12:32:39 +0300 |
commit | 7b6bcb6e7a77b1015dd0ea8dbef2c749123da82f (patch) | |
tree | af689d89943c138b16ecca83a745cec65b5bad4a /Rakefile | |
parent | 22db3b937d9f57f487bb37296bd41c209d69113f (diff) | |
download | puppet-augeas_core-7b6bcb6e7a77b1015dd0ea8dbef2c749123da82f.tar.gz puppet-augeas_core-7b6bcb6e7a77b1015dd0ea8dbef2c749123da82f.tar.bz2 |
(MODULES-11197) Allow release prep commits in rake task
Update changelog to match new tags.
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ end def changelog_future_release return unless Rake.application.top_level_tasks.include? "changelog" - returnVal = "%s" % JSON.load(File.read('metadata.json'))['version'] + returnVal = "v%s" % JSON.load(File.read('metadata.json'))['version'] raise "unable to find the future_release (version) in metadata.json" if returnVal.nil? puts "GitHubChangelogGenerator future_release:#{returnVal}" returnVal |