Skip to content

Commit

Permalink
chore: update dependencies for release (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
Neal authored May 7, 2020
1 parent e20520b commit 41688f2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ require (
github.com/frankban/quicktest v1.7.2 // indirect
github.com/gin-gonic/gin v1.5.0
github.com/go-redis/redis v6.15.6+incompatible
github.com/go-vela/compiler v0.4.0
github.com/go-vela/types v0.4.0
github.com/go-vela/compiler v0.4.1
github.com/go-vela/types v0.4.1
github.com/google/go-github/v29 v29.0.3
github.com/google/uuid v1.1.1
github.com/hashicorp/go-hclog v0.10.0 // indirect
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,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.4.0 h1:mu5mNuYEO6c/iuJS6WjFzY5sdYLQH7svhDTR2Smbgsw=
github.com/go-vela/compiler v0.4.0/go.mod h1:xSwR92izpiR6zs+FjSim/ic7BbKumMz0QlAjnVKKvRA=
github.com/go-vela/types v0.4.0 h1:g2CceYM78QYJ3AbnPpSFoELTw3Ll+tAgoyFGyr2YGoU=
github.com/go-vela/types v0.4.0/go.mod h1:ig7fC+MKGsgAlKqovkFsUQlbZtLDLhl/djiedHmsL5s=
github.com/go-vela/compiler v0.4.1 h1:mGjwIgyoDTDRr9j1OdMk5Bbw8GK+QZ/JsPjoGuy5FWM=
github.com/go-vela/compiler v0.4.1/go.mod h1:e8DKedX+jeToGKGFjbU+mLrGVOlYf9YHVHPpjPjnNKc=
github.com/go-vela/types v0.4.1 h1:XLRkvcLTr6wTUR2tz5sUYWCyDnIs5j5zdfN+4aCaScM=
github.com/go-vela/types v0.4.1/go.mod h1:ig7fC+MKGsgAlKqovkFsUQlbZtLDLhl/djiedHmsL5s=
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-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=
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 @@ -293,7 +293,7 @@ func TestMiddleware_Secure_TLS(t *testing.T) {

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

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

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

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

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

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

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

// 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 @@ -12,7 +12,7 @@ var (
// VersionMinor is for functionality in a backwards-compatible manner
VersionMinor int64 = 4
// VersionPatch is for backwards-compatible bug fixes
VersionPatch int64
VersionPatch int64 = 1
// VersionDev indicates build metadata. Releases will be empty string.
VersionDev string
)
Expand Down

0 comments on commit 41688f2

Please sign in to comment.