From 011ea941bf5658ef7cc5a9a3ac9c1f27eeb86f9b Mon Sep 17 00:00:00 2001 From: SkyLothar Date: Tue, 3 May 2016 09:15:45 +0800 Subject: [PATCH] bump version to 0.1.5 --- AUTHORS.md | 1 + README.md | 2 +- lib/resty/evp.lua | 2 +- lib/resty/jwt-validators.lua | 2 +- lib/resty/jwt.lua | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 6befd77..550e92b 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -11,6 +11,7 @@ Thank you guys for making this project better! ## Resty.EVP - Daniel Hiltgen [@dhiltgen](https://github.com/dhiltgen) - ravenscar [@ravenscar](https://github.com/ravenscar) + - William [@Deadleg](https://github.com/Deadleg) ## Patches and Suggestions - Daniel Hiltgen [@dhiltgen](https://github.com/dhiltgen) diff --git a/README.md b/README.md index bbac2e2..9321561 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ lua-resty-jwt - [JWT](http://self-issued.info/docs/draft-jones-json-web-token-01 version ======= -0.1.4 +0.1.5 Table of Contents diff --git a/lib/resty/evp.lua b/lib/resty/evp.lua index ef5d3ed..cf0b852 100644 --- a/lib/resty/evp.lua +++ b/lib/resty/evp.lua @@ -3,7 +3,7 @@ local ffi = require "ffi" local _C = ffi.C -local _M = { _VERSION = "0.01" } +local _M = { _VERSION = "0.0.2" } local CONST = { diff --git a/lib/resty/jwt-validators.lua b/lib/resty/jwt-validators.lua index 49c33c9..4ca6312 100644 --- a/lib/resty/jwt-validators.lua +++ b/lib/resty/jwt-validators.lua @@ -1,4 +1,4 @@ -local _M = {_VERSION="0.1.4"} +local _M = {_VERSION="0.1.5"} --[[ This file defines "validators" to be used in validating a spec. A "validator" is simply a function with diff --git a/lib/resty/jwt.lua b/lib/resty/jwt.lua index d3f66a2..cc10d6f 100644 --- a/lib/resty/jwt.lua +++ b/lib/resty/jwt.lua @@ -4,7 +4,7 @@ local evp = require "resty.evp" local hmac = require "resty.hmac" local resty_random = require "resty.random" -local _M = {_VERSION="0.1.4"} +local _M = {_VERSION="0.1.5"} local mt = {__index=_M} local string_match= string.match