From 64f44decf794474ec5a95da9816170169c4ad889 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Tue, 27 Mar 2018 15:59:47 -0700 Subject: [PATCH] release: 2.0.1 --- CHANGELOG.md | 18 ++++++++++++++++-- lib/resty/mlcache.lua | 2 +- ...kspec => lua-resty-mlcache-2.0.1-1.rockspec | 4 ++-- 3 files changed, 19 insertions(+), 5 deletions(-) rename lua-resty-mlcache-2.0.0-1.rockspec => lua-resty-mlcache-2.0.1-1.rockspec (97%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a6f5ded0..58c89a95e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,26 @@ # Table of Contents - [Unreleased](#unreleased) +- [2.0.1](#2.0.1) - [2.0.0](#2.0.0) - [1.0.1](#1.0.1) - [1.0.0](#1.0.0) ## Unreleased -Diff: [2.0.0...master] +Diff: [2.0.1...master] + +[Back to TOC](#table-of-contents) + +## [2.0.1] + +> Released on: 2018/03/27 + +#### Fixed + +- Ensure the `set()`, `delete()`, `peek()`, and `purge()` method properly + support the new `shm_miss` option. + [#45](https://github.com/thibaultcha/lua-resty-mlcache/pull/45) [Back to TOC](#table-of-contents) @@ -78,7 +91,8 @@ Initial release. [Back to TOC](#table-of-contents) -[2.0.0...master]: https://github.com/thibaultcha/lua-resty-mlcache/compare/2.0.0...master +[2.0.1...master]: https://github.com/thibaultcha/lua-resty-mlcache/compare/2.0.1...master +[2.0.1]: https://github.com/thibaultcha/lua-resty-mlcache/compare/2.0.0...2.0.1 [2.0.0]: https://github.com/thibaultcha/lua-resty-mlcache/compare/1.0.1...2.0.0 [1.0.1]: https://github.com/thibaultcha/lua-resty-mlcache/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/thibaultcha/lua-resty-mlcache/tree/1.0.0 diff --git a/lib/resty/mlcache.lua b/lib/resty/mlcache.lua index 6a4cd493e..35b0db18f 100644 --- a/lib/resty/mlcache.lua +++ b/lib/resty/mlcache.lua @@ -172,7 +172,7 @@ end local _M = { - _VERSION = "2.0.0", + _VERSION = "2.0.1", _AUTHOR = "Thibault Charbonnier", _LICENSE = "MIT", _URL = "https://github.com/thibaultcha/lua-resty-mlcache", diff --git a/lua-resty-mlcache-2.0.0-1.rockspec b/lua-resty-mlcache-2.0.1-1.rockspec similarity index 97% rename from lua-resty-mlcache-2.0.0-1.rockspec rename to lua-resty-mlcache-2.0.1-1.rockspec index f4f497054..2c676cc14 100644 --- a/lua-resty-mlcache-2.0.0-1.rockspec +++ b/lua-resty-mlcache-2.0.1-1.rockspec @@ -1,8 +1,8 @@ package = "lua-resty-mlcache" -version = "2.0.0-1" +version = "2.0.1-1" source = { url = "git://github.com/thibaultcha/lua-resty-mlcache", - tag = "2.0.0" + tag = "2.0.1" } description = { summary = "Multi-level caching library for OpenResty",