status-go/RELEASING.md
2018-12-17 12:17:22 +01:00

2.4 KiB

Release Process of status-go

The release process describes creating a release on Github. Each release consists of a new tag and assets which are builds for various environments but not only.

The process is automated and, even though it's possible to run manually, should always be triggered using our Jenkins job.

Versioning

We use semver but as we do not have a stable version yet, it's a bit skewed.

We use 0 as the MAJOR version and bump only MINOR when there are breaking changes and PATCH when there are no breaking changes.

Additionally, a pre-release can be created and the version can look like as complicated as this:

0.MINOR.PATCH-beta.INDEX.GIT_SHA

Releasing from a branch

TODO: create a script that can do that instead of manual work.

  1. Make sure that your branch is rebased on develop,
  2. Change VERSION file content to 0.X.Y-beta.Z.$GIT_SHA where GIT_SHA is the commit you want to release,
  3. Go to Jenkins job and use your branch. NOTE: do not select "RELEASE".

NOTE: remember to change VERSION content back before merge.

Releasing pre-release from develop

TODO: create a script that can do that instead of manual work.

  1. Pull develop branch,
  2. Bump Z (0.X.Y-beta.Z) in the current version (VERSION file),
  3. Commit and push the change,
  4. Go to Jenkins job, select "RELEASE" and use develop branch.

Releasing from develop (regular release)

TODO: create a script that can do that instead of manual work.

  1. Pull develop branch,
  2. Checkout a new branch release/0.X,
  3. Remove -beta.Z suffix from the current version (VERSION file),
  4. Commit and push the change,
  5. Checkout develop branch, bump X, reset Z to 0 and commit to develop,
  6. Go to Jenkins job, select "RELEASE" and use release/0.X branch.

Releasing from develop (a hot-fix)

TODO: create a script that can do that instead of manual work.

  1. Checkout a release branch you want to hot fix (branch have a name release/0.X),
  2. Bump Y (0.X.Y) in the current version (VERSION file),
  3. Commit and push the change to release/0.X branch,
  4. Go to Jenkins job, select "RELEASE" and use release/0.X branch name.