Skip to content

Commit

Permalink
release prep v2.8.0 (#3181)
Browse files Browse the repository at this point in the history
  • Loading branch information
eoinmcafee00 committed Jan 11, 2022
1 parent 3088c67 commit 07731e4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog

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

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

**Implemented enhancements:**

- bump UI to v2.5.0 [\#3180](https://github.com/harness/drone/pull/3180) ([eoinmcafee00](https://github.com/eoinmcafee00))
- \(feat\) ignore archive repos on sync [\#3178](https://github.com/harness/drone/pull/3178) ([eoinmcafee00](https://github.com/eoinmcafee00))
- Datadog add the tag of 'remote:gitee' [\#3174](https://github.com/harness/drone/pull/3174) ([kit101](https://github.com/kit101))
- Add tag filter when call build list endpoint [\#3173](https://github.com/harness/drone/pull/3173) ([michelangelomo](https://github.com/michelangelomo))

**Fixed bugs:**

- \(maint\) add warning around typo for stage\_id in step struct [\#3179](https://github.com/harness/drone/pull/3179) ([tphoney](https://github.com/tphoney))

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

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

**Merged pull requests:**

- release prep v2.7.3 [\#3176](https://github.com/harness/drone/pull/3176) ([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 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 = 7
VersionMinor int64 = 8
// VersionPatch is for backwards-compatible bug fixes.
VersionPatch int64 = 3
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.7.3"; got != want {
if got, want := Version.String(), "2.8.0"; got != want {
t.Errorf("Want version %s, got %s", want, got)
}
}

0 comments on commit 07731e4

Please sign in to comment.