From fa8e17dc3764d58bdef575f8bb8c97a3a90c6add Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Fri, 27 Mar 2020 17:24:12 -0700 Subject: [PATCH] bump version number for 1.7.0 --- CHANGELOG.md | 4 ++++ version/version.go | 4 ++-- version/version_test.go | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 68dbbda64..cb67c2c85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,10 +12,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - endpoint to delete a branch from the index. [#2940](https://github.com/drone/drone/pull/2940). - endpoint to delete a pull request from the index. [#2940](https://github.com/drone/drone/pull/2940). - endpoint to delete an environment from the index. [#2940](https://github.com/drone/drone/pull/2940). +- page to view the latest build per branch. ### Fixed +- convert deploy events in 0.8 yaml to promote events. - do not execute cron job for disabled repositories. [#2931](https://github.com/drone/drone/issues/2931). - remove trailing slash from gitea url to prevent oauth2 token refresh errors, by [@cmj0121](https://github.com/cmj0121). [#2920](https://github.com/drone/drone/issues/2920). +- disable font ligatures in build log output. [drone/drone-ui#322](https://github.com/drone/drone-ui/pull/322). +- missing am/pm in timstamps ## [1.6.5] - 2020-01-29 ### Changed diff --git a/version/version.go b/version/version.go index 5657732e2..c63498a37 100644 --- a/version/version.go +++ b/version/version.go @@ -25,9 +25,9 @@ var ( // VersionMajor is for an API incompatible changes. VersionMajor int64 = 1 // VersionMinor is for functionality in a backwards-compatible manner. - VersionMinor int64 = 6 + VersionMinor int64 = 7 // VersionPatch is for backwards-compatible bug fixes. - VersionPatch int64 = 5 + VersionPatch int64 // VersionPre indicates prerelease. VersionPre = "" // VersionDev indicates development branch. Releases will be empty string. diff --git a/version/version_test.go b/version/version_test.go index ca2f50b7b..5966233f7 100644 --- a/version/version_test.go +++ b/version/version_test.go @@ -9,7 +9,7 @@ package version import "testing" func TestVersion(t *testing.T) { - if got, want := Version.String(), "1.6.5"; got != want { + if got, want := Version.String(), "1.7.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }