Skip to content

Commit

Permalink
build(version): upgrade version to v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockopp committed Nov 14, 2019
1 parent 4ea901c commit 9a32ffa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions router/middleware/header_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ func TestMiddleware_Secure_TLS(t *testing.T) {

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

// setup context
resp := httptest.NewRecorder()
Expand Down Expand Up @@ -317,7 +317,7 @@ func TestMiddleware_RequestVersion(t *testing.T) {

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

// setup context
resp := httptest.NewRecorder()
Expand Down Expand Up @@ -347,7 +347,7 @@ func TestMiddleware_RequestVersion_Prod(t *testing.T) {

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

// setup context
resp := httptest.NewRecorder()
Expand Down Expand Up @@ -377,7 +377,7 @@ func TestMiddleware_ResponseVersion(t *testing.T) {

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

// setup context
resp := httptest.NewRecorder()
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 = 1
// VersionPatch is for backwards-compatible bug fixes
VersionPatch int64 = 4
VersionPatch int64 = 5
// VersionDev indicates drone build number. Releases will be empty string.
VersionDev string
)
Expand Down

0 comments on commit 9a32ffa

Please sign in to comment.