aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua-cjson-2.1.0.9-1.rockspec (renamed from lua-cjson-2.1.0.6-1.rockspec)4
-rw-r--r--lua_cjson.c2
-rwxr-xr-xtests/test.lua2
3 files changed, 4 insertions, 4 deletions
diff --git a/lua-cjson-2.1.0.6-1.rockspec b/lua-cjson-2.1.0.9-1.rockspec
index d6489f2..32a230e 100644
--- a/lua-cjson-2.1.0.6-1.rockspec
+++ b/lua-cjson-2.1.0.9-1.rockspec
@@ -1,9 +1,9 @@
1package = "lua-cjson" 1package = "lua-cjson"
2version = "2.1.0.6-1" 2version = "2.1.0.9-1"
3 3
4source = { 4source = {
5 url = "git+https://github.com/openresty/lua-cjson", 5 url = "git+https://github.com/openresty/lua-cjson",
6 tag = "2.1.0.6", 6 tag = "2.1.0.9",
7} 7}
8 8
9description = { 9description = {
diff --git a/lua_cjson.c b/lua_cjson.c
index 45ebe78..0c41cab 100644
--- a/lua_cjson.c
+++ b/lua_cjson.c
@@ -52,7 +52,7 @@
52#endif 52#endif
53 53
54#ifndef CJSON_VERSION 54#ifndef CJSON_VERSION
55#define CJSON_VERSION "2.1.0.6" 55#define CJSON_VERSION "2.1.0.9"
56#endif 56#endif
57 57
58#ifdef _MSC_VER 58#ifdef _MSC_VER
diff --git a/tests/test.lua b/tests/test.lua
index aeded76..605fc91 100755
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -93,7 +93,7 @@ local cjson_tests = {
93 -- Test API variables 93 -- Test API variables
94 { "Check module name, version", 94 { "Check module name, version",
95 function () return json._NAME, json._VERSION end, { }, 95 function () return json._NAME, json._VERSION end, { },
96 true, { "cjson", "2.1.0.6" } }, 96 true, { "cjson", "2.1.0.9" } },
97 97
98 -- Test decoding simple types 98 -- Test decoding simple types
99 { "Decode string", 99 { "Decode string",