From e2a996d878f3680bdd09bee74276f176477d375d Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Mon, 30 Sep 2024 17:42:43 +0200 Subject: [PATCH] Edit CHANGELOG after bump --- fastlane/Fastfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index ea148418..e70e3d20 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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]