From b5d019acdf141f96ac9a2ada98cedd2c8641da47 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Sun, 12 Jul 2020 14:19:18 -0400 Subject: [PATCH] bump version [CI SKIP] --- CHANGELOG.md | 2 +- version/version.go | 4 ++-- version/version_test.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6ca6873..4d664f2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/version/version.go b/version/version.go index 5ae04cf7..813a6251 100644 --- a/version/version.go +++ b/version/version.go @@ -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. diff --git a/version/version_test.go b/version/version_test.go index 3de230f9..941065c1 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -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) } }