diff --git a/lua-cjson-2.1.0.6-1.rockspec b/lua-cjson-2.1.0.9-1.rockspec similarity index 97% rename from lua-cjson-2.1.0.6-1.rockspec rename to lua-cjson-2.1.0.9-1.rockspec index d6489f24..32a230ee 100644 --- a/lua-cjson-2.1.0.6-1.rockspec +++ b/lua-cjson-2.1.0.9-1.rockspec @@ -1,9 +1,9 @@ package = "lua-cjson" -version = "2.1.0.6-1" +version = "2.1.0.9-1" source = { url = "git+https://github.com/openresty/lua-cjson", - tag = "2.1.0.6", + tag = "2.1.0.9", } description = { diff --git a/lua_cjson.c b/lua_cjson.c index 45ebe78b..0c41caba 100644 --- a/lua_cjson.c +++ b/lua_cjson.c @@ -52,7 +52,7 @@ #endif #ifndef CJSON_VERSION -#define CJSON_VERSION "2.1.0.6" +#define CJSON_VERSION "2.1.0.9" #endif #ifdef _MSC_VER diff --git a/tests/test.lua b/tests/test.lua index aeded765..605fc91c 100755 --- a/tests/test.lua +++ b/tests/test.lua @@ -93,7 +93,7 @@ local cjson_tests = { -- Test API variables { "Check module name, version", function () return json._NAME, json._VERSION end, { }, - true, { "cjson", "2.1.0.6" } }, + true, { "cjson", "2.1.0.9" } }, -- Test decoding simple types { "Decode string",