From b7b04a555ab0aa18d91950624f55886399adf754 Mon Sep 17 00:00:00 2001 From: Eoin McAfee Date: Wed, 15 Jun 2022 10:18:04 +0100 Subject: [PATCH] release prep for v2.12.2 --- CHANGELOG.md | 25 ++++++++++++++++++++++++- version/version.go | 2 +- version/version_test.go | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 408f8461..f73e51c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ # Changelog -## [v2.12.0](https://github.com/harness/drone/tree/v2.12.0) (2022-05-13) +## [v2.12.2](https://github.com/harness/drone/tree/v2.12.2) (2022-06-15) + +[Full Changelog](https://github.com/harness/drone/compare/v2.12.1...v2.12.2) + +**Fixed bugs:** + +- \(bug\) - fix original template scripts & remove amend scripts [\#3229](https://github.com/harness/drone/pull/3229) ([eoinmcafee00](https://github.com/eoinmcafee00)) +- \(bug\) - remove unique index on template name [\#3226](https://github.com/harness/drone/pull/3226) ([eoinmcafee00](https://github.com/eoinmcafee00)) +- Added OAuth2 token refresher for Gitlab [\#3215](https://github.com/harness/drone/pull/3215) ([EndymionWight](https://github.com/EndymionWight)) + +**Merged pull requests:** + +- \(maint\) fix starlark test on windows [\#3230](https://github.com/harness/drone/pull/3230) ([tphoney](https://github.com/tphoney)) +- \(maint\) fix unit tests so they pass on windows [\#3228](https://github.com/harness/drone/pull/3228) ([tphoney](https://github.com/tphoney)) +- Update Readme to Fix Typo [\#3223](https://github.com/harness/drone/pull/3223) ([hrittikhere](https://github.com/hrittikhere)) +- \(bug\) add unit test for comments in template file [\#3221](https://github.com/harness/drone/pull/3221) ([eoinmcafee00](https://github.com/eoinmcafee00)) +- Bump scm version to v1.24.0 [\#3219](https://github.com/harness/drone/pull/3219) ([kit101](https://github.com/kit101)) + +## [v2.12.1](https://github.com/harness/drone/tree/v2.12.1) (2022-05-16) + +[Full Changelog](https://github.com/harness/drone/compare/v2.12.0...v2.12.1) + +## [v2.12.0](https://github.com/harness/drone/tree/v2.12.0) (2022-05-16) [Full Changelog](https://github.com/harness/drone/compare/v2.11.1...v2.12.0) @@ -16,6 +38,7 @@ **Merged pull requests:** +- release prep v2.12.0 [\#3214](https://github.com/harness/drone/pull/3214) ([tphoney](https://github.com/tphoney)) - 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)) diff --git a/version/version.go b/version/version.go index d3631e64..511375df 100644 --- a/version/version.go +++ b/version/version.go @@ -27,7 +27,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner. VersionMinor int64 = 12 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 0 + VersionPatch int64 = 2 // 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 e0071fce..be5ef7e4 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.12.0"; got != want { + if got, want := Version.String(), "2.12.2"; got != want { t.Errorf("Want version %s, got %s", want, got) } }