diff --git a/CHANGELOG.md b/CHANGELOG.md index 98c1b663..33fbd44c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog -## [v2.5.0](https://github.com/harness/drone/tree/v2.5.0) (2021-11-16) +## [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) + +**Implemented enhancements:** + +- Feat: implemented gitee client [\#3156](https://github.com/harness/drone/pull/3156) ([kit101](https://github.com/kit101)) + +## [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) @@ -17,6 +25,10 @@ - fix a typo in readme [\#3150](https://github.com/harness/drone/pull/3150) ([nothatDinger](https://github.com/nothatDinger)) +**Merged pull requests:** + +- release prep for v2.5.0 [\#3161](https://github.com/harness/drone/pull/3161) ([eoinmcafee00](https://github.com/eoinmcafee00)) + ## [v2.4.0](https://github.com/harness/drone/tree/v2.4.0) (2021-09-23) [Full Changelog](https://github.com/harness/drone/compare/v2.3.1...v2.4.0) diff --git a/version/version.go b/version/version.go index bd404d76..8a586cc5 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 = 5 + VersionMinor int64 = 6 // 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 348a9183..16953ccf 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.5.0"; got != want { + if got, want := Version.String(), "2.6.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }