diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | README | 10 | ||||
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | lua-cjson.spec | 2 |
5 files changed, 10 insertions, 8 deletions
@@ -1,4 +1,4 @@ | |||
1 | CJSON_VERSION = 1.0 | 1 | CJSON_VERSION = 1.0.1 |
2 | LUA_VERSION = 5.1 | 2 | LUA_VERSION = 5.1 |
3 | 3 | ||
4 | # See http://lua-users.org/wiki/BuildingModules for platform specific | 4 | # See http://lua-users.org/wiki/BuildingModules for platform specific |
@@ -1,2 +1,5 @@ | |||
1 | Version 1.0.1 (May 10 2011) | ||
2 | * Added build support for OSX | ||
3 | |||
1 | Version 1.0 (May 9 2011) | 4 | Version 1.0 (May 9 2011) |
2 | * Initial release. | 5 | * Initial release. |
@@ -1,5 +1,5 @@ | |||
1 | Lua CJSON v1.0 | 1 | Lua CJSON v1.0.1 |
2 | ============== | 2 | ================ |
3 | 3 | ||
4 | Lua CJSON is covered by the MIT license. See the file "LICENSE" for | 4 | Lua CJSON is covered by the MIT license. See the file "LICENSE" for |
5 | details. | 5 | details. |
@@ -34,8 +34,8 @@ Build requirements: | |||
34 | Or: | 34 | Or: |
35 | - LuaJIT (http://www.luajit.org/) | 35 | - LuaJIT (http://www.luajit.org/) |
36 | 36 | ||
37 | The included Makefile should be reviewed and updated based on the | 37 | The included Makefile should be reviewed. Updated the Makefile to suit |
38 | location of your Lua header and library directories. Then: | 38 | your platform and Lua header/library directories. Then: |
39 | 39 | ||
40 | # make | 40 | # make |
41 | # make install | 41 | # make install |
@@ -45,7 +45,7 @@ location of your Lua header and library directories. Then: | |||
45 | Linux distributions using RPM should be able to build a package with | 45 | Linux distributions using RPM should be able to build a package with |
46 | the following command: | 46 | the following command: |
47 | 47 | ||
48 | # rpmbuild -tb lua-cjson-1.0.tar.gz | 48 | # rpmbuild -tb lua-cjson-1.0.1.tar.gz |
49 | 49 | ||
50 | 50 | ||
51 | Lua CJSON API | 51 | Lua CJSON API |
@@ -1,7 +1,6 @@ | |||
1 | - Option to configure encoding escapes. | 1 | - Option to configure encoding escapes. |
2 | 2 | ||
3 | - Make encode/decode routines thread safe (within the same lua_State) | 3 | - Make encode/decode routines thread safe (within the same lua_State) |
4 | - json_buf? | ||
5 | - Optionally create an object. Clone function. | 4 | - Optionally create an object. Clone function. |
6 | 5 | ||
7 | - run_test_group "config" function calls should be protected by pcall? | 6 | - run_test_group "config" function calls should be protected by pcall? |
diff --git a/lua-cjson.spec b/lua-cjson.spec index c5ed796..a86ee20 100644 --- a/lua-cjson.spec +++ b/lua-cjson.spec | |||
@@ -2,7 +2,7 @@ | |||
2 | %define lualibdir %{_libdir}/lua/%{luaver} | 2 | %define lualibdir %{_libdir}/lua/%{luaver} |
3 | 3 | ||
4 | Name: lua-cjson | 4 | Name: lua-cjson |
5 | Version: 1.0 | 5 | Version: 1.0.1 |
6 | Release: 1%{?dist} | 6 | Release: 1%{?dist} |
7 | Summary: JSON support for the Lua language | 7 | Summary: JSON support for the Lua language |
8 | 8 | ||