Merge pull request #3119 from tphoney/release_prep_v2.0.6

(maint) v2.0.6 release prep
This commit is contained in:
TP Honey 2021-08-17 14:39:23 +01:00 committed by GitHub
commit 7f6e01e06e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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)
}
}