Skip to content

Commit

Permalink
bump version to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyLothar committed May 3, 2016
1 parent f6adcaf commit 011ea94
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/evp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/jwt-validators.lua
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/resty/jwt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 011ea94

Please sign in to comment.