diff --git a/.github/issue_template.md b/.github/issue_template.md index 5c46135..63c9a49 100644 --- a/.github/issue_template.md +++ b/.github/issue_template.md @@ -7,7 +7,7 @@ A new issue about a bug should be verified with a minimized example. ###### Environment -- lua-resty-openidc version (e.g. 1.7.2) +- lua-resty-openidc version (e.g. 1.7.3) - OpenID Connect provider (e.g. Keycloak, Azure AD) ###### Expected behaviour diff --git a/.travis.yml b/.travis.yml index e929b8a..faa9542 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ services: env: global: - - VERSION=1.7.2-1 + - VERSION=1.7.3-1 - NAME=lua-resty-openidc - ROCKSPEC=$NAME-$VERSION.rockspec - LUAROCKS=2.3.0 diff --git a/ChangeLog b/ChangeLog index e442ec6..2d064f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +09/20/2020 +- release 1.7.3 + 08/20/2020 - added optional support for RFC 7636 "Proof Key for Code Exchange" diff --git a/lib/resty/openidc.lua b/lib/resty/openidc.lua index ddfa804..9bd4551 100644 --- a/lib/resty/openidc.lua +++ b/lib/resty/openidc.lua @@ -84,7 +84,7 @@ local supported_token_auth_methods = { } local openidc = { - _VERSION = "1.7.2" + _VERSION = "1.7.3" } openidc.__index = openidc diff --git a/lua-resty-openidc-1.7.2-1.rockspec b/lua-resty-openidc-1.7.3-1.rockspec similarity index 97% rename from lua-resty-openidc-1.7.2-1.rockspec rename to lua-resty-openidc-1.7.3-1.rockspec index e487877..3e431a5 100644 --- a/lua-resty-openidc-1.7.2-1.rockspec +++ b/lua-resty-openidc-1.7.3-1.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-openidc" -version = "1.7.2-1" +version = "1.7.3-1" source = { url = "git://github.com/zmartzone/lua-resty-openidc", - tag = "v1.7.2", + tag = "v1.7.3", dir = "lua-resty-openidc" } description = {