Skip to content

Commit

Permalink
Merge pull request #3281 from harness/prep-v2.15.0
Browse files Browse the repository at this point in the history
release prep v2.15.0
  • Loading branch information
Dan Wilson committed Oct 28, 2022
2 parents 3b7b2ad + dee3dc4 commit 99cb5c1
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

0 comments on commit 99cb5c1

Please sign in to comment.