bump version [CI SKIP]

This commit is contained in:
Brad Rydzewski 2020-07-12 14:19:18 -04:00
parent 6322644ec1
commit b5d019acdf
3 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
## [1.9.0] - 2020-07-12
### Added
- ui support for deployment list and summary.
- ui support for promoting and rolling back builds.

View file

@ -25,9 +25,9 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 1
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 8
VersionMinor int64 = 9
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 1
VersionPatch int64
// VersionPre indicates prerelease.
VersionPre = ""
// VersionDev indicates development branch. Releases will be empty string.

View file

@ -9,7 +9,7 @@ package version
import "testing"
func TestVersion(t *testing.T) {
if got, want := Version.String(), "1.8.1"; got != want {
if got, want := Version.String(), "1.9.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}