From efe4b3158a62ec65b4ad6bd7b21bf3d43721814f Mon Sep 17 00:00:00 2001 From: Neal Coleman Date: Mon, 11 Nov 2019 09:41:39 -0600 Subject: [PATCH] Update go mod --- go.mod | 6 +++--- go.sum | 12 ++++++------ router/middleware/header_test.go | 8 ++++---- version/version.go | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/go.mod b/go.mod index 5c91f885..e8ac6fea 100644 --- a/go.mod +++ b/go.mod @@ -13,9 +13,9 @@ require ( github.com/drone/envsubst v1.0.2 github.com/gin-gonic/gin v1.4.0 github.com/go-redis/redis v6.15.6+incompatible - github.com/go-vela/mock v0.1.1 - github.com/go-vela/sdk-go v0.1.1 - github.com/go-vela/types v0.1.1 + github.com/go-vela/mock v0.1.2 + github.com/go-vela/sdk-go v0.1.2 + github.com/go-vela/types v0.1.2 github.com/google/go-cmp v0.3.1 github.com/gorilla/mux v1.7.3 // indirect github.com/morikuni/aec v1.0.0 // indirect diff --git a/go.sum b/go.sum index 62792a58..84f8f683 100644 --- a/go.sum +++ b/go.sum @@ -45,12 +45,12 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V github.com/go-redis/redis v6.15.6+incompatible h1:H9evprGPLI8+ci7fxQx6WNZHJSb7be8FqJQRhdQZ5Sg= github.com/go-redis/redis v6.15.6+incompatible/go.mod h1:NAIEuMOZ/fxfXJIrKDQDz8wamY7mA7PouImQ2Jvg6kA= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-vela/mock v0.1.1 h1:l/W0bBUJlFi3cs/lfzU/NxfyBAJisR4Zuq5OmPbvVII= -github.com/go-vela/mock v0.1.1/go.mod h1:feFnPD27oy3xTCDGYqbSvfbfR0JgZh5NaQaC4XFFwRU= -github.com/go-vela/sdk-go v0.1.1 h1:LCMtEZSvu4dizWEZjyJ/z8CvUtzfUkdvJ96UlQFA7OY= -github.com/go-vela/sdk-go v0.1.1/go.mod h1:Uhxu8oN1DWTlsh+4QaiU0t9cTFhguzq5bF4pWy3FdZE= -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/mock v0.1.2 h1:Faxe3QHa6dqZKTAqBYH3XBMXLJBBRUEzaFNzBupgkb4= +github.com/go-vela/mock v0.1.2/go.mod h1:zZ5GTcbjDqal6wziV1Hre0qHC2x9NHvRF8Z5L5trZUw= +github.com/go-vela/sdk-go v0.1.2 h1:pqu2fbC4k6yZdFgBVfgVkSLV+vrZUo4RD9kJ22SWlo8= +github.com/go-vela/sdk-go v0.1.2/go.mod h1:LyxSwMhEcvOJv2AZCuqxzYKoxw4oR7sVRvSycLubJMw= +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 h1:72R+M5VuhED/KujmZVcIquuo8mBgX4oVda//DQb3PXo= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= diff --git a/router/middleware/header_test.go b/router/middleware/header_test.go index f19bda9b..a1cbe200 100644 --- a/router/middleware/header_test.go +++ b/router/middleware/header_test.go @@ -263,7 +263,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() @@ -293,7 +293,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() @@ -323,7 +323,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() @@ -353,7 +353,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 c43c9753..650cd2e6 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 )