Skip to content

Commit

Permalink
Merge pull request #3194 from harness/prep-v2.11.0
Browse files Browse the repository at this point in the history
(maint) release prep for 2.11.0
  • Loading branch information
Dan Wilson committed Mar 8, 2022
2 parents 3f60963 + 3e52b2f commit e3c5981
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## [v2.11.0](https://github.com/harness/drone/tree/v2.11.0) (2022-03-08)

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

**Implemented enhancements:**

- bump UI and SCM versions [\#3193](https://github.com/harness/drone/pull/3193) ([d1wilko](https://github.com/d1wilko))

## [v2.10.0](https://github.com/harness/drone/tree/v2.10.0) (2022-03-03)

[Full Changelog](https://github.com/harness/drone/compare/v2.9.1...v2.10.0)
Expand All @@ -9,6 +17,10 @@
- bump UI version to v2.7.0 [\#3190](https://github.com/harness/drone/pull/3190) ([d1wilko](https://github.com/d1wilko))
- bump UI version to v2.6.2 [\#3188](https://github.com/harness/drone/pull/3188) ([d1wilko](https://github.com/d1wilko))

**Merged pull requests:**

- \(maint\) release prep for 2.10.0 [\#3191](https://github.com/harness/drone/pull/3191) ([d1wilko](https://github.com/d1wilko))

## [v2.9.1](https://github.com/harness/drone/tree/v2.9.1) (2022-01-27)

[Full Changelog](https://github.com/harness/drone/compare/v2.9.0...v2.9.1)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
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 = 10
VersionMinor int64 = 11
// 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
Expand Up @@ -10,7 +10,7 @@ package version
import "testing"

func TestVersion(t *testing.T) {
if got, want := Version.String(), "2.10.0"; got != want {
if got, want := Version.String(), "2.11.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit e3c5981

Please sign in to comment.