From abe1824354d8db9ea53806ad1dbac5f6d9d4d795 Mon Sep 17 00:00:00 2001 From: Dan Wilson Date: Wed, 15 Dec 2021 13:51:39 +0000 Subject: [PATCH] release v2.7.0 update changelog --- CHANGELOG.md | 16 ++++++++++++++++ version/version.go | 2 +- version/version_test.go | 3 ++- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33fbd44c..3c052aa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [v2.7.0](https://github.com/harness/drone/tree/v2.7.0) (2021-12-15) + +[Full Changelog](https://github.com/harness/drone/compare/v2.6.0...v2.7.0) + +**Implemented enhancements:** + +- bump UI to v2.4.1 [\#3167](https://github.com/harness/drone/pull/3167) ([d1wilko](https://github.com/d1wilko)) + +**Fixed bugs:** + +- \(DRON-157\) use deploy string in deployment [\#3165](https://github.com/harness/drone/pull/3165) ([tphoney](https://github.com/tphoney)) + ## [v2.6.0](https://github.com/harness/drone/tree/v2.6.0) (2021-11-30) [Full Changelog](https://github.com/harness/drone/compare/v2.5.0...v2.6.0) @@ -8,6 +20,10 @@ - Feat: implemented gitee client [\#3156](https://github.com/harness/drone/pull/3156) ([kit101](https://github.com/kit101)) +**Merged pull requests:** + +- release prep for v2.6.0 [\#3163](https://github.com/harness/drone/pull/3163) ([tphoney](https://github.com/tphoney)) + ## [v2.5.0](https://github.com/harness/drone/tree/v2.5.0) (2021-11-17) [Full Changelog](https://github.com/harness/drone/compare/v2.4.0...v2.5.0) diff --git a/version/version.go b/version/version.go index 8a586cc5..e9f88c01 100644 --- a/version/version.go +++ b/version/version.go @@ -25,7 +25,7 @@ var ( // VersionMajor is for an API incompatible changes. VersionMajor int64 = 2 // VersionMinor is for functionality in a backwards-compatible manner. - VersionMinor int64 = 6 + VersionMinor int64 = 7 // VersionPatch is for backwards-compatible bug fixes. VersionPatch int64 = 0 // VersionPre indicates prerelease. diff --git a/version/version_test.go b/version/version_test.go index 16953ccf..16f9aaba 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -2,6 +2,7 @@ // Use of this source code is governed by the Drone Non-Commercial License // that can be found in the LICENSE file. +//go:build !oss // +build !oss package version @@ -9,7 +10,7 @@ package version import "testing" func TestVersion(t *testing.T) { - if got, want := Version.String(), "2.6.0"; got != want { + if got, want := Version.String(), "2.7.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }