Skip to content

Commit

Permalink
Merge pull request #159 from nats-io/release_2_1_0
Browse files Browse the repository at this point in the history
Release v2.1.0
  • Loading branch information
kozlovic committed Sep 28, 2021
2 parents ee62b55 + 6574a06 commit 7ddd6b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ before_script:
- staticcheck ./...
script:
- mkdir cov
- if [ "$V" == "v2" ]; then GO_MOD_FILE="go_test.mod"; else GO_MOD_FILE="go.mod"; fi
- go test -modfile=$GO_MOD_FILE -v -race -covermode=atomic -coverprofile=./cov/coverage.out -coverpkg=github.com/nats-io/jwt .
- if [ "$V" == "v2" ]; then GO_MOD_FILE="go_test.mod"; PKG_EXT="/v2"; else GO_MOD_FILE="go.mod"; PKG_EXT=""; fi
- go test -modfile=$GO_MOD_FILE -v -race -covermode=atomic -coverprofile=./cov/coverage.out -coverpkg=github.com/nats-io/jwt${PKG_EXT} .
- gocovmerge ./cov/*.out > coverage.out

deploy:
Expand Down
2 changes: 1 addition & 1 deletion v2/header.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

const (
// Version is semantic version.
Version = "2.0.3"
Version = "2.1.0"

// TokenTypeJwt is the JWT token type supported JWT tokens
// encoded and decoded by this library
Expand Down

0 comments on commit 7ddd6b0

Please sign in to comment.