From 44ce3f1c181d7d5003496ae228e0a43ab833b752 Mon Sep 17 00:00:00 2001 From: TP Honey Date: Tue, 17 Aug 2021 14:30:02 +0100 Subject: [PATCH] (maint) v2.0.6 release prep --- CHANGELOG.md | 1 + version/version.go | 2 +- version/version_test.go | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00aa1d72..8f92add4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ **Merged pull requests:** +- release 2.0.5 [\#3117](https://github.com/drone/drone/pull/3117) ([eoinmcafee00](https://github.com/eoinmcafee00)) - Update pull\_request\_template.md [\#3107](https://github.com/drone/drone/pull/3107) ([tphoney](https://github.com/tphoney)) All notable changes to this project will be documented in this file. diff --git a/version/version.go b/version/version.go index 4b3cae6d..741d73b3 100644 --- a/version/version.go +++ b/version/version.go @@ -27,7 +27,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner. VersionMinor int64 = 0 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 4 + VersionPatch int64 = 6 // 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 affb8061..9a78616f 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(), "2.0.4"; got != want { + if got, want := Version.String(), "2.0.6"; got != want { t.Errorf("Want version %s, got %s", want, got) } }