Skip to content

Commit

Permalink
Merge pull request #3191 from harness/prep-v2.10.0
Browse files Browse the repository at this point in the history
(maint) release prep for 2.10.0
  • Loading branch information
Dan Wilson committed Mar 3, 2022
2 parents c7b8403 + e909c5f commit be2660a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

## [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)

**Implemented enhancements:**

- 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))

## [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 All @@ -8,6 +17,10 @@

- bump ui version 2.6.1 [\#3185](https://github.com/harness/drone/pull/3185) ([d1wilko](https://github.com/d1wilko))

**Merged pull requests:**

- \(maint\) release prep for 2.9.1 [\#3186](https://github.com/harness/drone/pull/3186) ([tphoney](https://github.com/tphoney))

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

[Full Changelog](https://github.com/harness/drone/compare/v2.8.0...v2.9.0)
Expand Down
4 changes: 0 additions & 4 deletions go.sum
Expand Up @@ -78,10 +78,6 @@ github.com/drone/drone-go v1.4.1-0.20201109202657-b9e58bbbcf27/go.mod h1:fxCf9jA
github.com/drone/drone-runtime v1.0.7-0.20190729202838-87c84080f4a1/go.mod h1:+osgwGADc/nyl40J0fdsf8Z09bgcBZXvXXnLOY48zYs=
github.com/drone/drone-runtime v1.1.1-0.20200623162453-61e33e2cab5d h1:P5HI/Y9hARTZ3F3EKs0kYijhjXZWQRQHYn1neTi0pWM=
github.com/drone/drone-runtime v1.1.1-0.20200623162453-61e33e2cab5d/go.mod h1:4/2QToW5+HGD0y1sTw7X35W1f7YINS14UfDY4isggT8=
github.com/drone/drone-ui v2.6.1+incompatible h1:4FgggF8mmILFi5y6ij0HmNUxBFXLGf+IJj3ZllAnA7k=
github.com/drone/drone-ui v2.6.1+incompatible/go.mod h1:NBtVWW7NNJpD9+huMD/5TAE1db2nrEh0i35/9Rf1MPI=
github.com/drone/drone-ui v2.6.2+incompatible h1:RXRfl0lbic84/kxmFz1C4lfMSGhmp5CBwPNn4FjaG7s=
github.com/drone/drone-ui v2.6.2+incompatible/go.mod h1:NBtVWW7NNJpD9+huMD/5TAE1db2nrEh0i35/9Rf1MPI=
github.com/drone/drone-ui v2.7.0+incompatible h1:PCmegECiLgfkLpYg+r87133H0e1r+TQggHOR3GfsLf4=
github.com/drone/drone-ui v2.7.0+incompatible/go.mod h1:NBtVWW7NNJpD9+huMD/5TAE1db2nrEh0i35/9Rf1MPI=
github.com/drone/drone-yaml v1.2.4-0.20200326192514-6f4d6dfb39e4 h1:XsstoCeXC2t8lA9OLTdoFwckaptqahxwjCWsenySfX8=
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Expand Up @@ -25,9 +25,9 @@ var (
// VersionMajor is for an API incompatible changes.
VersionMajor int64 = 2
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 9
VersionMinor int64 = 10
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 1
VersionPatch int64 = 0
// VersionPre indicates prerelease.
VersionPre = ""
// VersionDev indicates development branch. Releases will be empty string.
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.9.1"; got != want {
if got, want := Version.String(), "2.10.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit be2660a

Please sign in to comment.