Skip to content

Commit

Permalink
bump version to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyLothar committed Apr 27, 2016
1 parent bd9749d commit 150bc3d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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.3
0.1.4


Table of Contents
Expand Down
4 changes: 2 additions & 2 deletions 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.01" }


local CONST = {
Expand Down Expand Up @@ -33,7 +33,7 @@ int RSA_size(const RSA *rsa);
void RSA_free(RSA *rsa);
typedef int pem_password_cb(char *buf, int size, int rwflag, void *userdata);
RSA * PEM_read_bio_RSAPrivateKey(BIO *bp, RSA **rsa, pem_password_cb *cb,
void *u);
void *u);
RSA * PEM_read_bio_RSAPublicKey(BIO *bp, RSA **rsa, pem_password_cb *cb,
void *u);

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.3"}
local _M = {_VERSION="0.1.4"}

--[[
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.3"}
local _M = {_VERSION="0.1.4"}
local mt = {__index=_M}

local string_match= string.match
Expand Down

0 comments on commit 150bc3d

Please sign in to comment.