Skip to content

Commit

Permalink
release prep v2.7.3 (#3176)
Browse files Browse the repository at this point in the history
  • Loading branch information
eoinmcafee00 committed Dec 30, 2021
1 parent 979c069 commit 62be60f
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.7.3](https://github.com/harness/drone/tree/v2.7.3) (2021-12-30)

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

**Fixed bugs:**

- bump go-scm to v1.16.3 [\#3175](https://github.com/harness/drone/pull/3175) ([eoinmcafee00](https://github.com/eoinmcafee00))

## [v2.7.2](https://github.com/harness/drone/tree/v2.7.2) (2021-12-19)

[Full Changelog](https://github.com/harness/drone/compare/v2.7.1...v2.7.2)
Expand All @@ -12,6 +20,10 @@

- fixbug gitee provide refresher [\#3168](https://github.com/harness/drone/pull/3168) ([kit101](https://github.com/kit101))

**Merged pull requests:**

- release prep 2.7.2 [\#3172](https://github.com/harness/drone/pull/3172) ([eoinmcafee00](https://github.com/eoinmcafee00))

## [v2.7.1](https://github.com/harness/drone/tree/v2.7.1) (2021-12-17)

[Full Changelog](https://github.com/harness/drone/compare/v2.7.0...v2.7.1)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -27,7 +27,7 @@ var (
// VersionMinor is for functionality in a backwards-compatible manner.
VersionMinor int64 = 7
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 2
VersionPatch int64 = 3
// 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.7.2"; got != want {
if got, want := Version.String(), "2.7.3"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 62be60f

Please sign in to comment.