diff --git a/README.md b/README.md index d9965aceab63..0efc8b6f9fab 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,9 @@ for details on installation and usage. # History +0.4.1 +- Remove the no-longer supported `run_on` field from plugin config schema + 0.4.0 - Fix #7 (run_on in schema should be in toplevel fields table) - Remove BasePlugin inheritance (not needed anymore) diff --git a/kong-plugin-azure-functions-0.4.0-1.rockspec b/kong-plugin-azure-functions-0.4.1-1.rockspec similarity index 93% rename from kong-plugin-azure-functions-0.4.0-1.rockspec rename to kong-plugin-azure-functions-0.4.1-1.rockspec index beb426284ce0..965e74317e25 100644 --- a/kong-plugin-azure-functions-0.4.0-1.rockspec +++ b/kong-plugin-azure-functions-0.4.1-1.rockspec @@ -1,8 +1,8 @@ package = "kong-plugin-azure-functions" -version = "0.4.0-1" +version = "0.4.1-1" source = { url = "git://github.com/kong/kong-plugin-azure-functions", - tag = "0.4.0" + tag = "0.4.1" } description = { summary = "This plugin allows Kong to invoke Azure functions.", diff --git a/kong/plugins/azure-functions/handler.lua b/kong/plugins/azure-functions/handler.lua index 0dfc11569e4b..2e80a8612846 100644 --- a/kong/plugins/azure-functions/handler.lua +++ b/kong/plugins/azure-functions/handler.lua @@ -22,7 +22,7 @@ end local azure = { PRIORITY = 749, - VERSION = "0.4.0", + VERSION = "0.4.1", }