diff --git a/.github/issue_template.md b/.github/issue_template.md index 11efd3ee..f97fcf40 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.4) +- lua-resty-openidc version (e.g. 1.7.5) - OpenID Connect provider (e.g. Keycloak, Azure AD) ###### Expected behaviour diff --git a/.travis.yml b/.travis.yml index d668980c..a5241491 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ services: env: global: - - VERSION=1.7.4-1 + - VERSION=1.7.5-1 - NAME=lua-resty-openidc - ROCKSPEC=$NAME-$VERSION.rockspec - LUAROCKS=3.4.0 diff --git a/ChangeLog b/ChangeLog index af72966b..4fcd61ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +12/21/2021 +- release 1.7.5 + 12/17/2021 - added id_token and the token endpoint response as additional arguments to the on_authenticated lifecycle hook; see #413 diff --git a/lib/resty/openidc.lua b/lib/resty/openidc.lua index ce38a708..246414ef 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.4" + _VERSION = "1.7.5" } openidc.__index = openidc diff --git a/lua-resty-openidc-1.7.4-1.rockspec b/lua-resty-openidc-1.7.5-1.rockspec similarity index 97% rename from lua-resty-openidc-1.7.4-1.rockspec rename to lua-resty-openidc-1.7.5-1.rockspec index b36bc630..10c152a7 100644 --- a/lua-resty-openidc-1.7.4-1.rockspec +++ b/lua-resty-openidc-1.7.5-1.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-openidc" -version = "1.7.4-1" +version = "1.7.5-1" source = { url = "git://github.com/zmartzone/lua-resty-openidc", - tag = "v1.7.4", + tag = "v1.7.5", dir = "lua-resty-openidc" } description = {