From 8f03b30cbc7aa55a4c6ee5c1c2c024b1787883f6 Mon Sep 17 00:00:00 2001 From: Laszlo Szucs Date: Tue, 3 Dec 2019 12:47:33 +0100 Subject: [PATCH] update version.go and extend release description --- README.md | 8 ++++++-- version/version.go | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0cf2a335..bcee062f 100644 --- a/README.md +++ b/README.md @@ -163,10 +163,14 @@ If the UITest scanner cannot find the desired scheme, follow these steps: ### Create a new release +You must do the release in two steps. You cannot merge `version/version.go` +changes and `bitrise run update-wrapper-versions` changes in one step, because +the install scripts have to refer to valid, existing releases. + 1. Merge all changes to master. 1. Increase the version in `version/version.go`. 1. Merge the version change to master. -1. Push version tag to master. +1. Push version tag to master. This will trigger an automated release process. 1. Download from GitHub and test the new release. -1. Run `bitrise run update-wrapper-versions`. +1. Run `bitrise run update-wrapper-versions`. This will update the version numbers in the install scripts. 1. Merge the updated wrapper versions. diff --git a/version/version.go b/version/version.go index 1ee11990..e572edf9 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // VERSION ... -const VERSION = "2.4.0" +const VERSION = "2.4.1"