From dee3dc44613de2e63f3814e7b534a7a9b6b4edb3 Mon Sep 17 00:00:00 2001 From: Dan Wilson Date: Fri, 28 Oct 2022 09:57:04 +0100 Subject: [PATCH] release prep v2.15.0 --- CHANGELOG.md | 13 +++++++++++++ version/version.go | 2 +- version/version_test.go | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f33713fd5..49b07b882 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v2.15.0](https://github.com/harness/drone/tree/v2.15.0) (2022-10-28) + +[Full Changelog](https://github.com/harness/drone/compare/v2.14.0...v2.15.0) + +**Implemented enhancements:** + +- bump ui version [\#3279](https://github.com/harness/drone/pull/3279) ([d1wilko](https://github.com/d1wilko)) +- Add endpoint for allowing admins to force rotate a user's token [\#3272](https://github.com/harness/drone/pull/3272) ([ShiftedMr](https://github.com/ShiftedMr)) + ## [v2.14.0](https://github.com/harness/drone/tree/v2.14.0) (2022-10-18) [Full Changelog](https://github.com/harness/drone/compare/v2.13.0...v2.14.0) @@ -8,6 +17,10 @@ - \(DRON-418\) send webhook and set status for failed builds [\#3266](https://github.com/harness/drone/pull/3266) ([tphoney](https://github.com/tphoney)) +**Merged pull requests:** + +- v2.14.0 release prep [\#3275](https://github.com/harness/drone/pull/3275) ([d1wilko](https://github.com/d1wilko)) + ## [v2.13.0](https://github.com/harness/drone/tree/v2.13.0) (2022-09-21) [Full Changelog](https://github.com/harness/drone/compare/v2.12.1...v2.13.0) diff --git a/version/version.go b/version/version.go index f51aca7bb..1887b90d2 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 = 14 + VersionMinor int64 = 15 // 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 763159d22..8631927d5 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.14.0"; got != want { + if got, want := Version.String(), "2.15.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }