aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--NEWS3
-rw-r--r--README10
-rw-r--r--TODO1
-rw-r--r--lua-cjson.spec2
5 files changed, 10 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 8832fed..e2d5339 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1CJSON_VERSION = 1.0 1CJSON_VERSION = 1.0.1
2LUA_VERSION = 5.1 2LUA_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
diff --git a/NEWS b/NEWS
index b682cd2..a016d7b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,2 +1,5 @@
1Version 1.0.1 (May 10 2011)
2* Added build support for OSX
3
1Version 1.0 (May 9 2011) 4Version 1.0 (May 9 2011)
2* Initial release. 5* Initial release.
diff --git a/README b/README
index 71ad376..1ff12d9 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
1Lua CJSON v1.0 1Lua CJSON v1.0.1
2============== 2================
3 3
4Lua CJSON is covered by the MIT license. See the file "LICENSE" for 4Lua CJSON is covered by the MIT license. See the file "LICENSE" for
5details. 5details.
@@ -34,8 +34,8 @@ Build requirements:
34Or: 34Or:
35- LuaJIT (http://www.luajit.org/) 35- LuaJIT (http://www.luajit.org/)
36 36
37The included Makefile should be reviewed and updated based on the 37The included Makefile should be reviewed. Updated the Makefile to suit
38location of your Lua header and library directories. Then: 38your 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:
45Linux distributions using RPM should be able to build a package with 45Linux distributions using RPM should be able to build a package with
46the following command: 46the 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
51Lua CJSON API 51Lua CJSON API
diff --git a/TODO b/TODO
index 8b9af0c..46ecb91 100644
--- a/TODO
+++ b/TODO
@@ -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
4Name: lua-cjson 4Name: lua-cjson
5Version: 1.0 5Version: 1.0.1
6Release: 1%{?dist} 6Release: 1%{?dist}
7Summary: JSON support for the Lua language 7Summary: JSON support for the Lua language
8 8