-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from buildkite/keithduncan/release/5.3.0
Release v5.3.0
- Loading branch information
Showing
3 changed files
with
16 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Release Instructions | ||
|
||
1. Determine the SemVer version for the new release | ||
1. Generate a changelog using [ghch](https://github.com/buildkite/ghch) `~/go/bin/ghch --format=markdown --next-version=$VERSION` | ||
1. Create a new branch `git fetch origin && git checkout -b keithdunan/release/$VERSION` | ||
1. Update [CHANGELOG.md](CHANEGLOG.md) with the generated changelog | ||
1. Update [`version/version.go`](version/version.go) with the new version | ||
1. Push your branch and wait for CI to pass | ||
1. Merge your branch, the Buildkite Pipeline will upload the release steps to create a GitHub Release and Git tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package version | ||
|
||
// Version the library version number | ||
const Version = "5.2.1" | ||
const Version = "5.3.0" |