From aa18fc5322d6486ef5c110cd130c8d76abc558c1 Mon Sep 17 00:00:00 2001 From: TP Honey Date: Thu, 12 May 2022 15:48:09 +0100 Subject: [PATCH] release prep v2.12.0 --- .github_changelog_generator | 1 + CHANGELOG.md | 23 +++++++++++++++++++++++ version/version.go | 4 ++-- version/version_test.go | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/.github_changelog_generator b/.github_changelog_generator index edeb5aa7..7cd67cac 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1,2 +1,3 @@ since-tag=v2.0.4 +issues=false diff --git a/CHANGELOG.md b/CHANGELOG.md index a41c05c8..408f8461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [v2.12.0](https://github.com/harness/drone/tree/v2.12.0) (2022-05-13) + +[Full Changelog](https://github.com/harness/drone/compare/v2.11.1...v2.12.0) + +**Implemented enhancements:** + +- bump SCM version to v1.21.1 [\#3204](https://github.com/harness/drone/pull/3204) ([d1wilko](https://github.com/d1wilko)) +- bump ui version [\#3202](https://github.com/harness/drone/pull/3202) ([d1wilko](https://github.com/d1wilko)) + +**Fixed bugs:** + +- \(fix\) update drone ui to 2.8.2 [\#3211](https://github.com/harness/drone/pull/3211) ([tphoney](https://github.com/tphoney)) +- \(dron-267\) correctly set parent for promotion retry [\#3210](https://github.com/harness/drone/pull/3210) ([tphoney](https://github.com/tphoney)) + +**Merged pull requests:** + +- fixing URL [\#3208](https://github.com/harness/drone/pull/3208) ([dnielsen](https://github.com/dnielsen)) +- update community information with updated links [\#3199](https://github.com/harness/drone/pull/3199) ([mrsantons](https://github.com/mrsantons)) + ## [v2.11.1](https://github.com/harness/drone/tree/v2.11.1) (2022-03-15) [Full Changelog](https://github.com/harness/drone/compare/v2.11.0...v2.11.1) @@ -8,6 +27,10 @@ - ignore nil repos in list and add better debugging [\#3196](https://github.com/harness/drone/pull/3196) ([d1wilko](https://github.com/d1wilko)) +**Merged pull requests:** + +- \(maint\) release prep for 2.11.1 [\#3197](https://github.com/harness/drone/pull/3197) ([d1wilko](https://github.com/d1wilko)) + ## [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) diff --git a/version/version.go b/version/version.go index cf9ef42b..d3631e64 100644 --- a/version/version.go +++ b/version/version.go @@ -25,9 +25,9 @@ var ( // VersionMajor is for an API incompatible changes. VersionMajor int64 = 2 // VersionMinor is for functionality in a backwards-compatible manner. - VersionMinor int64 = 11 + VersionMinor int64 = 12 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 1 + VersionPatch int64 = 0 // 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 3e5e81a8..e0071fce 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.11.1"; got != want { + if got, want := Version.String(), "2.12.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }