diff --git a/go.mod b/go.mod index 6c5fac1a5..aa7a37323 100644 --- a/go.mod +++ b/go.mod @@ -7,8 +7,8 @@ require ( github.com/dgrijalva/jwt-go v3.2.0+incompatible github.com/gin-gonic/gin v1.4.0 github.com/go-redis/redis v6.15.6+incompatible - github.com/go-vela/compiler v0.1.2 - github.com/go-vela/types v0.1.1 + github.com/go-vela/compiler v0.1.3 + github.com/go-vela/types v0.1.2 github.com/google/go-cmp v0.3.1 github.com/google/go-github/v26 v26.1.3 github.com/google/uuid v1.1.1 diff --git a/go.sum b/go.sum index 315500b3b..dfccae6dc 100644 --- a/go.sum +++ b/go.sum @@ -67,10 +67,10 @@ github.com/go-sql-driver/mysql v1.4.1 h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZp github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-test/deep v1.0.2-0.20181118220953-042da051cf31/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= -github.com/go-vela/compiler v0.1.2 h1:Fa8FuDZoknAkNQrD7Gv7NxiA/++xfyEqzxnaN60NkvA= -github.com/go-vela/compiler v0.1.2/go.mod h1:ZlmtKKOXoms9LP/1hB0logdyjKpSck6YS7kmP9gJzdk= -github.com/go-vela/types v0.1.1 h1:mCZzTZsw2BFachgRns0I3FcmyFn2njfSJhx/celju4k= -github.com/go-vela/types v0.1.1/go.mod h1:JR5jxRuE5A+RZyyQqMd4lJoUApVFo/Iq9iABbQzPCj0= +github.com/go-vela/compiler v0.1.3 h1:ZfOCKhy8wCs5WvZtD92aVUnqjzXuUN3Cik81FwadW3I= +github.com/go-vela/compiler v0.1.3/go.mod h1:4c2Erqdq5eirc6km/KJduoN5F5M/96AlXi95LAQZBq4= +github.com/go-vela/types v0.1.2 h1:1YyjLJNREMiEkI8KH2bGICz7jihvsROTjFm8TaoaY7E= +github.com/go-vela/types v0.1.2/go.mod h1:JR5jxRuE5A+RZyyQqMd4lJoUApVFo/Iq9iABbQzPCj0= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= diff --git a/router/middleware/header_test.go b/router/middleware/header_test.go index db4c4dfd4..e4cef8966 100644 --- a/router/middleware/header_test.go +++ b/router/middleware/header_test.go @@ -287,7 +287,7 @@ func TestMiddleware_Secure_TLS(t *testing.T) { func TestMiddleware_RequestVersion(t *testing.T) { // setup types - wantVersion := "0.1.1" + wantVersion := "0.1.2" // setup context resp := httptest.NewRecorder() @@ -317,7 +317,7 @@ func TestMiddleware_RequestVersion(t *testing.T) { func TestMiddleware_RequestVersion_Prod(t *testing.T) { // setup types - wantVersion := "0.1.1" + wantVersion := "0.1.2" // setup context resp := httptest.NewRecorder() @@ -347,7 +347,7 @@ func TestMiddleware_RequestVersion_Prod(t *testing.T) { func TestMiddleware_ResponseVersion(t *testing.T) { // setup types - wantVersion := "0.1.1" + wantVersion := "0.1.2" // setup context resp := httptest.NewRecorder() @@ -377,7 +377,7 @@ func TestMiddleware_ResponseVersion(t *testing.T) { func TestMiddleware_ResponseVersion_Prod(t *testing.T) { // setup types - wantVersion := "0.1.1" + wantVersion := "0.1.2" // setup context resp := httptest.NewRecorder() diff --git a/version/version.go b/version/version.go index c43c97532..650cd2e61 100644 --- a/version/version.go +++ b/version/version.go @@ -12,7 +12,7 @@ var ( // VersionMinor is for functionality in a backwards-compatible manner VersionMinor int64 = 1 // VersionPatch is for backwards-compatible bug fixes - VersionPatch int64 = 1 + VersionPatch int64 = 2 // VersionDev indicates drone build number. Releases will be empty string. VersionDev string )