diff --git a/README.md b/README.md index 5d014fc..08a6d9f 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ lua-resty-jwt - [JWT](http://self-issued.info/docs/draft-jones-json-web-token-01 version ======= -0.1.0 +0.1.1 Table of Contents diff --git a/lib/resty/jwt.lua b/lib/resty/jwt.lua index 980f25a..76a729b 100644 --- a/lib/resty/jwt.lua +++ b/lib/resty/jwt.lua @@ -2,7 +2,7 @@ local cjson = require "cjson" local evp = require "resty.evp" local hmac = require "resty.hmac" -local _M = {_VERSION="0.1.0"} +local _M = {_VERSION="0.1.1"} local mt = {__index=_M}