Skip to content

Commit

Permalink
Suffix with v3 and unquote module name in go.mod
Browse files Browse the repository at this point in the history
As vgo proposes from version v2.0.0 there's supposed to be a /vX in the
module name. For users this means that they have to import jwt as
`github.com/dgrijalva/jwt/v3`.
See: https://blog.golang.org/versioning-proposal

At some point (CL: 105215) vgo started supporting and preferring
unquoted strings in mod files. This change unquotes the module name.
  • Loading branch information
vladimiroff committed May 23, 2018
1 parent 7633731 commit c470928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module "github.com/dgrijalva/jwt-go"
module github.com/dgrijalva/jwt/v3

0 comments on commit c470928

Please sign in to comment.