Skip to content

Commit

Permalink
chore: uptick version for release (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockopp authored Apr 10, 2020
1 parent 8543e0d commit f629aa0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions router/middleware/header_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ func TestMiddleware_Secure_TLS(t *testing.T) {

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

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

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

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

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

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

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

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

Expand Down

0 comments on commit f629aa0

Please sign in to comment.