Skip to content

Commit

Permalink
release prep for v2.17.0 (#3316)
Browse files Browse the repository at this point in the history
* release prep for v2.17.0
  • Loading branch information
eoinmcafee00 committed Apr 25, 2023
1 parent aca81bf commit 03d633b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
30 changes: 28 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
# Changelog

## [2.16.0](https://github.com/harness/drone/tree/2.16.0) (2022-12-15)
## [v2.17.0](https://github.com/harness/drone/tree/v2.17.0) (2023-04-25)

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

**Implemented enhancements:**

- Add `authtype` to logging middleware [\#3310](https://github.com/harness/drone/pull/3310) ([colinhoglund](https://github.com/colinhoglund))
- Add config for the buffer [\#3308](https://github.com/harness/drone/pull/3308) ([TheJokersThief](https://github.com/TheJokersThief))

**Fixed bugs:**

- store/card: fix dropped error [\#3300](https://github.com/harness/drone/pull/3300) ([alrs](https://github.com/alrs))
- bump drone-ui to 2.9.1 [\#3298](https://github.com/harness/drone/pull/3298) ([d1wilko](https://github.com/d1wilko))
- Starlark: Update `go.starlark.net` dependency [\#3284](https://github.com/harness/drone/pull/3284) ([dsotirakis](https://github.com/dsotirakis))

**Merged pull requests:**

- bump drone-ui to 2.11.1 [\#3315](https://github.com/harness/drone/pull/3315) ([d1wilko](https://github.com/d1wilko))
- bump drone-ui to 2.11.0 [\#3313](https://github.com/harness/drone/pull/3313) ([d1wilko](https://github.com/d1wilko))
- bump drone-ui to 2.10.0 [\#3311](https://github.com/harness/drone/pull/3311) ([d1wilko](https://github.com/d1wilko))
- \(maint\) move to use the arm64 pool [\#3296](https://github.com/harness/drone/pull/3296) ([tphoney](https://github.com/tphoney))

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

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

**Implemented enhancements:**

Expand All @@ -13,6 +35,10 @@

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

**Merged pull requests:**

- \(maint\) 2.16.0 release prep [\#3295](https://github.com/harness/drone/pull/3295) ([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 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 = 16
VersionMinor int64 = 17
// 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.16.0"; got != want {
if got, want := Version.String(), "2.17.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 03d633b

Please sign in to comment.