From dacfce14219644695f1f4c9985f2b9bc84573a13 Mon Sep 17 00:00:00 2001 From: Vasu Gupta Date: Sat, 17 Apr 2021 16:50:05 +0530 Subject: [PATCH] Updated version to 1.4 --- CHANGELOG.md | 4 ++++ README.md | 2 +- lua-resty-pubsub.rockspec | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a875c8e..5c5fdc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4] - 2021-04-17 +### Fixed +- Added exception handling in push_batch method for releasing lock + ## [1.3] - 2020-10-13 ### Added - Added support for accepting v1.1 config architecture thereby ensuring backward compatibility diff --git a/README.md b/README.md index 250da7c..2aa33b7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Lua Pubsub client driver for the `ngx_lua` based on the cosocket API. [![lua module](https://img.shields.io/badge/lua-module-blue?style=for-the-badge&logo=lua)](https://luarocks.org/modules/vwointegration/lua-resty-pubsub) -[![lua module](https://img.shields.io/badge/lua%20rocks-1.3-orange?style=for-the-badge&logo=lua)](https://luarocks.org/modules/vwointegration/lua-resty-pubsub) +[![lua module](https://img.shields.io/badge/lua%20rocks-1.4-orange?style=for-the-badge&logo=lua)](https://luarocks.org/modules/vwointegration/lua-resty-pubsub) [![License](https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge&logo=)](https://opensource.org/licenses/MIT) ## Table of Contents diff --git a/lua-resty-pubsub.rockspec b/lua-resty-pubsub.rockspec index 176a19b..bcf1fee 100644 --- a/lua-resty-pubsub.rockspec +++ b/lua-resty-pubsub.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-pubsub" -version = "1.3-0" +version = "1.4-0" source = { url = "git://github.com/wingify/lua-resty-pubsub", - tag = "v1.3" + tag = "v1.4" } description = { summary = "Lua Pubsub client driver for the ngx_lua based on the cosocket API",