diff --git a/jwt.go b/jwt.go index 059d96c..b0395f3 100644 --- a/jwt.go +++ b/jwt.go @@ -4,9 +4,9 @@ package jwt import ( "errors" - "gopkg.in/zhevron/jwt.v0/ecdsa" - "gopkg.in/zhevron/jwt.v0/hmac" - "gopkg.in/zhevron/jwt.v0/rsa" + "gopkg.in/zhevron/jwt.v1/ecdsa" + "gopkg.in/zhevron/jwt.v1/hmac" + "gopkg.in/zhevron/jwt.v1/rsa" ) // Signer is used by the signing packages to sign tokens. diff --git a/token_test.go b/token_test.go index c096085..15989ba 100644 --- a/token_test.go +++ b/token_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "gopkg.in/zhevron/jwt.v0/hmac" + "gopkg.in/zhevron/jwt.v1/hmac" ) func TestNewToken(t *testing.T) {