Edit CHANGELOG after bump

This commit is contained in:
Davide De Rosa 2024-09-30 17:42:43 +02:00
parent 0e4dd086ef
commit e2a996d878
No known key found for this signature in database
GPG Key ID: A48836171C759F5E
1 changed files with 3 additions and 1 deletions

View File

@ -31,9 +31,11 @@ lane :bump do |options|
pretty: "* %h %s",
date_format: "short"
)
File.open("../#{logname}", "w") { |file|
path = "../#{logname}"
File.open(path, "w") { |file|
file.write(log)
}
system("vim", path)
commit_version_bump(
message: "Bump version",
include: [logname]