Skip to content

Commit

Permalink
(maint) 2.16.0 release prep (#3295)
Browse files Browse the repository at this point in the history
  • Loading branch information
TP Honey committed Dec 15, 2022
1 parent 7a8c7e1 commit 7728b61
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [2.16.0](https://github.com/harness/drone/tree/2.16.0) (2022-12-15)

[Full Changelog](https://github.com/harness/drone/compare/v2.15.0...2.16.0)

**Implemented enhancements:**

- Make Starlark file size limit configurable [\#3291](https://github.com/harness/drone/pull/3291) ([andrii-kasparevych](https://github.com/andrii-kasparevych))
- Enhance status check label for promotions [\#3263](https://github.com/harness/drone/pull/3263) ([michelangelomo](https://github.com/michelangelomo))

**Fixed bugs:**

- \(bugfix\) bump go-scm to v1.28.0 [\#3290](https://github.com/harness/drone/pull/3290) ([tphoney](https://github.com/tphoney))

## [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)
Expand All @@ -9,6 +22,10 @@
- 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))

**Merged pull requests:**

- release prep v2.15.0 [\#3281](https://github.com/harness/drone/pull/3281) ([d1wilko](https://github.com/d1wilko))

## [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 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 = 15
VersionMinor int64 = 16
// 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.15.0"; got != want {
if got, want := Version.String(), "2.16.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 7728b61

Please sign in to comment.