From 0e009c7d04dbdd95ca98557147ebecaeb2eae802 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Sat, 21 Sep 2019 11:37:20 -0700 Subject: [PATCH] upgrade ui version --- CHANGELOG.md | 4 +++- go.mod | 2 +- go.sum | 2 ++ version/version.go | 2 +- version/version_test.go | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26fefd552..4ce897fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - endpoint to provide link to git resources, by [@bradrydzewski](https://github.com/bradrydzewski). [#1495](https://github.com/drone/drone/issues/1495). ### Fixed -- fixed issue with missing cron job name in user interface, by [@bradrydzewski](https://github.com/bradrydzewski). +- missing cron job name in user interface, by [@bradrydzewski](https://github.com/bradrydzewski). +- log lines not properly wrapping in user interface, by [@bradrydzewski](https://github.com/bradrydzewski). +$09](https://github.com/drone/drone-ui/issues/309). ## [1.4.0] - 2019-09-12 ### Added diff --git a/go.mod b/go.mod index 89634d17f..496221a29 100644 --- a/go.mod +++ b/go.mod @@ -19,7 +19,7 @@ require ( github.com/docker/go-units v0.3.3 github.com/drone/drone-go v1.0.6 github.com/drone/drone-runtime v1.1.0 - github.com/drone/drone-ui v0.0.0-20190904041021-b4bb5da2b193 + github.com/drone/drone-ui v0.0.0-20190921183404-f7ea129a55aa github.com/drone/drone-yaml v1.2.3-0.20190902155851-ad8ad9816fbf github.com/drone/envsubst v1.0.1 github.com/drone/go-license v1.0.2 diff --git a/go.sum b/go.sum index 9430ab305..67fca3c26 100644 --- a/go.sum +++ b/go.sum @@ -81,6 +81,8 @@ github.com/drone/drone-ui v0.0.0-20190826173727-43d81f243ef3 h1:HZl9aANRu3LqhO5A github.com/drone/drone-ui v0.0.0-20190826173727-43d81f243ef3/go.mod h1:NBtVWW7NNJpD9+huMD/5TAE1db2nrEh0i35/9Rf1MPI= github.com/drone/drone-ui v0.0.0-20190904041021-b4bb5da2b193 h1:T9pGkdg6kKcfF0VKXQ6+kTDBWhMOMm1BD5NbwsvDiQE= github.com/drone/drone-ui v0.0.0-20190904041021-b4bb5da2b193/go.mod h1:NBtVWW7NNJpD9+huMD/5TAE1db2nrEh0i35/9Rf1MPI= +github.com/drone/drone-ui v0.0.0-20190921183404-f7ea129a55aa h1:ymt4uC57/CUlt8NBYKa55yNXS2SHoWJ9XPDVwoi2BOQ= +github.com/drone/drone-ui v0.0.0-20190921183404-f7ea129a55aa/go.mod h1:NBtVWW7NNJpD9+huMD/5TAE1db2nrEh0i35/9Rf1MPI= github.com/drone/drone-ui v0.8.1 h1:I4WBAlnk/YQzCggQy/Qegb8Nu2T2R9KVzxso/lL98so= github.com/drone/drone-yaml v1.0.4 h1:NYTEGhf/XJMiJT8CwGy+pMOxWC8C2vhhzEo6/gbT4tU= github.com/drone/drone-yaml v1.0.4/go.mod h1:eM365p3g9M5sroFBTR/najiGrZnd/GiIpWHC2UW8PoI= diff --git a/version/version.go b/version/version.go index d936b400c..9dd5dea52 100644 --- a/version/version.go +++ b/version/version.go @@ -25,7 +25,7 @@ var ( // VersionMajor is for an API incompatible changes. VersionMajor int64 = 1 // VersionMinor is for functionality in a backwards-compatible manner. - VersionMinor int64 = 4 + VersionMinor int64 = 5 // VersionPatch is for backwards-compatible bug fixes. VersionPatch int64 // VersionPre indicates prerelease. diff --git a/version/version_test.go b/version/version_test.go index 3d1f9ab57..9521e47f8 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.4.0"; got != want { + if got, want := Version.String(), "1.5.0"; got != want { t.Errorf("Want version %s, got %s", want, got) } }