upgrade ui version

This commit is contained in:
Brad Rydzewski 2019-09-21 11:37:20 -07:00
parent 70e3bda73c
commit 0e009c7d04
5 changed files with 8 additions and 4 deletions

View File

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

2
go.mod
View File

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

2
go.sum
View File

@ -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=

View File

@ -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.

View File

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