Skip to content

Commit

Permalink
chore: update dependencies for v0.3.0-rc1 (#56)
Browse files Browse the repository at this point in the history
* chore: update dependencies for v0.3.0-rc1

* chore: update tests for 0.3.0
  • Loading branch information
KellyMerrick authored Feb 5, 2020
1 parent f27aa43 commit fd23650
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ require (
github.com/drone/envsubst v1.0.2
github.com/gin-gonic/gin v1.5.0
github.com/go-redis/redis v6.15.6+incompatible
github.com/go-vela/mock v0.2.0
github.com/go-vela/sdk-go v0.2.0
github.com/go-vela/types v0.2.0
github.com/go-vela/mock v0.3.0-rc1
github.com/go-vela/sdk-go v0.3.0-rc1
github.com/go-vela/types v0.3.0-rc1
github.com/gogo/protobuf v1.3.1 // indirect
github.com/google/go-cmp v0.3.1
github.com/gorilla/mux v1.7.3 // indirect
Expand Down
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+
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.2.0 h1:LMQPsPGx0ttnfaoAAuooGtWOgCxVUBlWSSl/xdhFbjU=
github.com/go-vela/mock v0.2.0/go.mod h1:Fti8z7+wTfMXkkPFsxjYcE5SzR/NTwdcL7xM5QomQZ4=
github.com/go-vela/sdk-go v0.2.0 h1:00siJNz/IFvq7sCw+2W4CXjVkD/Gz9XS3FXa0dGAxhI=
github.com/go-vela/sdk-go v0.2.0/go.mod h1:K4LCCCPpIm4RlWmyLiNtUCX6G+vjxerv866HD/fIa0Y=
github.com/go-vela/types v0.2.0 h1:VHOlUqCratdthbOpI1l0CLvVEINYqndpqVYVQoPm1Ac=
github.com/go-vela/types v0.2.0/go.mod h1:LNDrn7/nV38H0HmRfYv6YfPNb881R5NRE1YKXeVqpF4=
github.com/go-vela/mock v0.3.0-rc1 h1:BAYJHIRQp7NhoE9tCwbjWjyEaREAOd4X55mwwOFppVs=
github.com/go-vela/mock v0.3.0-rc1/go.mod h1:0l7AAinXhvfNiumsqM01+JByguCRjAjqkg4s9hIcQjk=
github.com/go-vela/sdk-go v0.3.0-rc1 h1:q7temqHqg6jPJeNcy3BeaBz+jyP/XQxjCDDDMfwLlRc=
github.com/go-vela/sdk-go v0.3.0-rc1/go.mod h1:+kcwCE66diYutQeecoS1rpbJH392Xr1ecKr6JA2JwdY=
github.com/go-vela/types v0.3.0-rc1 h1:iw/psQeGTdAaQlJvNsRh8YLrMh26dDC8fegeHSqTHmM=
github.com/go-vela/types v0.3.0-rc1/go.mod h1:LNDrn7/nV38H0HmRfYv6YfPNb881R5NRE1YKXeVqpF4=
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/gogo/protobuf v1.3.1 h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=
Expand Down
8 changes: 4 additions & 4 deletions router/middleware/header_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ func TestMiddleware_Secure_TLS(t *testing.T) {

func TestMiddleware_RequestVersion(t *testing.T) {
// setup types
wantVersion := "0.2.0"
wantVersion := "0.3.0"

// setup context
gin.SetMode(gin.TestMode)
Expand Down Expand Up @@ -299,7 +299,7 @@ func TestMiddleware_RequestVersion(t *testing.T) {

func TestMiddleware_RequestVersion_Prod(t *testing.T) {
// setup types
wantVersion := "0.2.0"
wantVersion := "0.3.0"

// setup context
gin.SetMode(gin.TestMode)
Expand Down Expand Up @@ -330,7 +330,7 @@ func TestMiddleware_RequestVersion_Prod(t *testing.T) {

func TestMiddleware_ResponseVersion(t *testing.T) {
// setup types
wantVersion := "0.2.0"
wantVersion := "0.3.0"

// setup context
gin.SetMode(gin.TestMode)
Expand Down Expand Up @@ -361,7 +361,7 @@ func TestMiddleware_ResponseVersion(t *testing.T) {

func TestMiddleware_ResponseVersion_Prod(t *testing.T) {
// setup types
wantVersion := "0.2.0"
wantVersion := "0.3.0"

// setup context
gin.SetMode(gin.TestMode)
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var (
// VersionMajor is for an API incompatible changes
VersionMajor int64
// VersionMinor is for functionality in a backwards-compatible manner
VersionMinor int64 = 2
VersionMinor int64 = 3
// VersionPatch is for backwards-compatible bug fixes
VersionPatch int64
// VersionDev indicates drone build number. Releases will be empty string.
Expand Down

0 comments on commit fd23650

Please sign in to comment.