Unverified Commit 748dbda2 authored by Matthew Fisher's avatar Matthew Fisher Committed by GitHub

Merge pull request #3399 from bacongobbler/fix-release-checklist

Fix release checklist
parents e77fdf5d 8604e0b8
...@@ -33,7 +33,7 @@ If you are creating a patch release, you may want to use the following instead: ...@@ -33,7 +33,7 @@ If you are creating a patch release, you may want to use the following instead:
```shell ```shell
export PREVIOUS_PATCH_RELEASE=vX.Y.Z export PREVIOUS_PATCH_RELEASE=vX.Y.Z
export RELEASE_NAME=vX.Y.Z+1 export RELEASE_NAME=vX.Y.Z+1
export RELEASE_BRANCH_NAME="release-$RELEASE_NAME" export RELEASE_BRANCH_NAME="release-X.Y"
export RELEASE_CANDIDATE_NAME="$RELEASE_NAME-rc1" export RELEASE_CANDIDATE_NAME="$RELEASE_NAME-rc1"
``` ```
...@@ -75,6 +75,25 @@ This new branch is going to be the base for the release, which we are going to i ...@@ -75,6 +75,25 @@ This new branch is going to be the base for the release, which we are going to i
## 2. Change the Version Number in Git ## 2. Change the Version Number in Git
When doing a minor release, make sure to update pkg/version/version.go with the new release version.
```shell
$ git diff pkg/version/version.go
diff --git a/pkg/version/version.go b/pkg/version/version.go
index 2109a0a..6f5a1a4 100644
--- a/pkg/version/version.go
+++ b/pkg/version/version.go
@@ -26,7 +26,7 @@ var (
// Increment major number for new feature additions and behavioral changes.
// Increment minor number for bug fixes and performance enhancements.
// Increment patch number for critical fixes to existing releases.
- Version = "v2.6"
+ Version = "v2.7"
// BuildMetadata is extra build time data
BuildMetadata = "unreleased"
```
The README stores links to the latest release for helm. We want to change the version to the first release candidate which we are releasing (more on that in step 5). The README stores links to the latest release for helm. We want to change the version to the first release candidate which we are releasing (more on that in step 5).
```shell ```shell
......
...@@ -26,7 +26,7 @@ var ( ...@@ -26,7 +26,7 @@ var (
// Increment major number for new feature additions and behavioral changes. // Increment major number for new feature additions and behavioral changes.
// Increment minor number for bug fixes and performance enhancements. // Increment minor number for bug fixes and performance enhancements.
// Increment patch number for critical fixes to existing releases. // Increment patch number for critical fixes to existing releases.
Version = "v2.7" Version = "v2.8"
// BuildMetadata is extra build time data // BuildMetadata is extra build time data
BuildMetadata = "unreleased" BuildMetadata = "unreleased"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment