From 1678f20f1c96aba0227bb545e3be455e3f220707 Mon Sep 17 00:00:00 2001 From: Aapo Talvensaari Date: Wed, 19 Jun 2024 19:16:41 +0300 Subject: [PATCH] chore(*): release 0.3.0 ### Summary - [style(lib/compat): update module version](https://github.com/Kong/lua-resty-events/pull/57) - [tests(*): use resty.events.new correctly as documented](https://github.com/Kong/lua-resty-events/pull/59) - [feat(protocol): send worker info (id and pid) to broker](https://github.com/Kong/lua-resty-events/pull/54) - [fix(*): option validation of broker id](https://github.com/Kong/lua-resty-events/pull/62) - [fix(broker): worker id based queues](https://github.com/Kong/lua-resty-events/pull/60) - [chore(worker): actively close connection to broker on error](https://github.com/Kong/lua-resty-events/pull/63) - [fix(*): retain events on send failures](https://github.com/Kong/lua-resty-events/pull/61) --- lualib/resty/events/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lualib/resty/events/init.lua b/lualib/resty/events/init.lua index 66120e9..78f5352 100644 --- a/lualib/resty/events/init.lua +++ b/lualib/resty/events/init.lua @@ -13,7 +13,7 @@ local str_sub = string.sub local worker_count = ngx.worker.count() local _M = { - _VERSION = "0.2.1", + _VERSION = "0.3.0", } local _MT = { __index = _M, }