Skip to content

Commit 79463c6

Browse files
committed
Bumped v0.4.1
Signed-off-by: Vishal Rana <[email protected]>
1 parent f732d59 commit 79463c6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Gopkg.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
[[constraint]]
3737
name = "github.com/labstack/labstack-go"
38-
version = "0.8.7"
38+
version = "0.8.8"
3939

4040
[[constraint]]
4141
name = "github.com/stretchr/testify"

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
dependency:
22
go get -u github.com/golang/dep/cmd/dep
33
dep ensure -update
4-
5-
test:
4+
5+
test:
66
echo "" > coverage.txt
77
for d in $(shell go list ./... | grep -v vendor); do \
8-
go test -race -coverprofile=profile.out -covermode=atomic $$d; \
8+
go test -race -coverprofile=profile.out -covermode=atomic $$d || exit 1; \
99
[ -f profile.out ] && cat profile.out >> coverage.txt && rm profile.out; \
10-
done
10+
done

0 commit comments

Comments
 (0)