Skip to content

Commit 64f44de

Browse files
committed
release: 2.0.1
1 parent 7442878 commit 64f44de

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
11
# Table of Contents
22

33
- [Unreleased](#unreleased)
4+
- [2.0.1](#2.0.1)
45
- [2.0.0](#2.0.0)
56
- [1.0.1](#1.0.1)
67
- [1.0.0](#1.0.0)
78

89
## Unreleased
910

10-
Diff: [2.0.0...master]
11+
Diff: [2.0.1...master]
12+
13+
[Back to TOC](#table-of-contents)
14+
15+
## [2.0.1]
16+
17+
> Released on: 2018/03/27
18+
19+
#### Fixed
20+
21+
- Ensure the `set()`, `delete()`, `peek()`, and `purge()` method properly
22+
support the new `shm_miss` option.
23+
[#45](https://github.com/thibaultcha/lua-resty-mlcache/pull/45)
1124

1225
[Back to TOC](#table-of-contents)
1326

@@ -78,7 +91,8 @@ Initial release.
7891

7992
[Back to TOC](#table-of-contents)
8093

81-
[2.0.0...master]: https://github.com/thibaultcha/lua-resty-mlcache/compare/2.0.0...master
94+
[2.0.1...master]: https://github.com/thibaultcha/lua-resty-mlcache/compare/2.0.1...master
95+
[2.0.1]: https://github.com/thibaultcha/lua-resty-mlcache/compare/2.0.0...2.0.1
8296
[2.0.0]: https://github.com/thibaultcha/lua-resty-mlcache/compare/1.0.1...2.0.0
8397
[1.0.1]: https://github.com/thibaultcha/lua-resty-mlcache/compare/1.0.0...1.0.1
8498
[1.0.0]: https://github.com/thibaultcha/lua-resty-mlcache/tree/1.0.0

lib/resty/mlcache.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ end
172172

173173

174174
local _M = {
175-
_VERSION = "2.0.0",
175+
_VERSION = "2.0.1",
176176
_AUTHOR = "Thibault Charbonnier",
177177
_LICENSE = "MIT",
178178
_URL = "https://github.com/thibaultcha/lua-resty-mlcache",

lua-resty-mlcache-2.0.0-1.rockspec renamed to lua-resty-mlcache-2.0.1-1.rockspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "lua-resty-mlcache"
2-
version = "2.0.0-1"
2+
version = "2.0.1-1"
33
source = {
44
url = "git://github.com/thibaultcha/lua-resty-mlcache",
5-
tag = "2.0.0"
5+
tag = "2.0.1"
66
}
77
description = {
88
summary = "Multi-level caching library for OpenResty",

0 commit comments

Comments
 (0)