diff --git a/CHANGELOG.md b/CHANGELOG.md index 8844deb8..c908e426 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v2.11.0](https://github.com/harness/drone/tree/v2.11.0) (2022-03-08) + +[Full Changelog](https://github.com/harness/drone/compare/v2.10.0...v2.11.0) + +**Implemented enhancements:** + +- bump UI and SCM versions [\#3193](https://github.com/harness/drone/pull/3193) ([d1wilko](https://github.com/d1wilko)) + ## [v2.10.0](https://github.com/harness/drone/tree/v2.10.0) (2022-03-03) [Full Changelog](https://github.com/harness/drone/compare/v2.9.1...v2.10.0) @@ -9,6 +17,10 @@ - bump UI version to v2.7.0 [\#3190](https://github.com/harness/drone/pull/3190) ([d1wilko](https://github.com/d1wilko)) - bump UI version to v2.6.2 [\#3188](https://github.com/harness/drone/pull/3188) ([d1wilko](https://github.com/d1wilko)) +**Merged pull requests:** + +- \(maint\) release prep for 2.10.0 [\#3191](https://github.com/harness/drone/pull/3191) ([d1wilko](https://github.com/d1wilko)) + ## [v2.9.1](https://github.com/harness/drone/tree/v2.9.1) (2022-01-27) [Full Changelog](https://github.com/harness/drone/compare/v2.9.0...v2.9.1) diff --git a/version/version.go b/version/version.go index 990b6167..62c4a83d 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 = 10 + VersionMinor int64 = 11 // 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 d2173aa5..8c6d26d9 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -10,7 +10,7 @@ package version import "testing" func TestVersion(t *testing.T) { - if got, want := Version.String(), "2.10.0"; got != want { + if got, want := Version.String(), "2.11.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }