diff options
author | Mark Pulford <mark@kyne.com.au> | 2011-08-10 20:47:32 +0930 |
---|---|---|
committer | Mark Pulford <mark@kyne.com.au> | 2011-08-10 20:47:32 +0930 |
commit | 1fc923da45731b39e6aea9f50543cd7e8b0e4ad8 (patch) | |
tree | bcf8ad75d685011226af1563572373de1e0b8ceb | |
parent | 386fdad6820fefa77355ed330f3072a5e2a4bd3e (diff) | |
download | lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.tar.gz lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.tar.bz2 lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.zip |
Update version to 1.0.3
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | lua-cjson-1.0.3-1.rockspec (renamed from lua-cjson-1.0.2-1.rockspec) | 6 | ||||
-rw-r--r-- | lua-cjson.spec | 5 |
4 files changed, 11 insertions, 8 deletions
@@ -1,4 +1,4 @@ | |||
1 | CJSON_VERSION = 1.0.2 | 1 | CJSON_VERSION = 1.0.3 |
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,4 +1,4 @@ | |||
1 | Lua CJSON v1.0.2 | 1 | Lua CJSON v1.0.3 |
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 |
@@ -58,7 +58,7 @@ RPM | |||
58 | Linux distributions using RPM should be able to build a package with | 58 | Linux distributions using RPM should be able to build a package with |
59 | the following command: | 59 | the following command: |
60 | 60 | ||
61 | # rpmbuild -tb lua-cjson-1.0.2.tar.gz | 61 | # rpmbuild -tb lua-cjson-1.0.3.tar.gz |
62 | 62 | ||
63 | 63 | ||
64 | LuaRocks | 64 | LuaRocks |
@@ -66,7 +66,7 @@ LuaRocks | |||
66 | 66 | ||
67 | Extract the source package into a directory and run: | 67 | Extract the source package into a directory and run: |
68 | 68 | ||
69 | # cd lua-cjson-1.0.2; luarocks make | 69 | # cd lua-cjson-1.0.3; luarocks make |
70 | 70 | ||
71 | 71 | ||
72 | Lua CJSON API | 72 | Lua CJSON API |
diff --git a/lua-cjson-1.0.2-1.rockspec b/lua-cjson-1.0.3-1.rockspec index e20132e..1550ae9 100644 --- a/lua-cjson-1.0.2-1.rockspec +++ b/lua-cjson-1.0.3-1.rockspec | |||
@@ -1,8 +1,8 @@ | |||
1 | package = "lua-cjson" | 1 | package = "lua-cjson" |
2 | version = "1.0.2-1" | 2 | version = "1.0.3-1" |
3 | 3 | ||
4 | source = { | 4 | source = { |
5 | url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.2.zip", | 5 | url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.3.zip", |
6 | } | 6 | } |
7 | 7 | ||
8 | description = { | 8 | description = { |
@@ -24,7 +24,7 @@ build = { | |||
24 | modules = { | 24 | modules = { |
25 | cjson = { | 25 | cjson = { |
26 | sources = { "lua_cjson.c", "strbuf.c" }, | 26 | sources = { "lua_cjson.c", "strbuf.c" }, |
27 | defines = { "VERSION=\"1.0.2\"" } | 27 | defines = { "VERSION=\"1.0.3\"" } |
28 | } | 28 | } |
29 | }, | 29 | }, |
30 | copy_directories = { "tests" } | 30 | copy_directories = { "tests" } |
diff --git a/lua-cjson.spec b/lua-cjson.spec index 386dbf0..3b1eec6 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.2 | 5 | Version: 1.0.3 |
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 | ||
@@ -43,6 +43,9 @@ rm -rf "$RPM_BUILD_ROOT" | |||
43 | 43 | ||
44 | 44 | ||
45 | %changelog | 45 | %changelog |
46 | * Wed Aug ? 2011 Mark Pulford <mark@kyne.com.au> - 1.0.3-1 | ||
47 | - Updated for 1.0.3 | ||
48 | |||
46 | * Sun May 29 2011 Mark Pulford <mark@kyne.com.au> - 1.0.2-1 | 49 | * Sun May 29 2011 Mark Pulford <mark@kyne.com.au> - 1.0.2-1 |
47 | - Updated for 1.0.2 | 50 | - Updated for 1.0.2 |
48 | 51 | ||