aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-08-10 20:47:32 +0930
committerMark Pulford <mark@kyne.com.au>2011-08-10 20:47:32 +0930
commit1fc923da45731b39e6aea9f50543cd7e8b0e4ad8 (patch)
treebcf8ad75d685011226af1563572373de1e0b8ceb
parent386fdad6820fefa77355ed330f3072a5e2a4bd3e (diff)
downloadlua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.tar.gz
lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.tar.bz2
lua-cjson-1fc923da45731b39e6aea9f50543cd7e8b0e4ad8.zip
Update version to 1.0.3
-rw-r--r--Makefile2
-rw-r--r--README6
-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.spec5
4 files changed, 11 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 42919c9..cfc7a74 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1CJSON_VERSION = 1.0.2 1CJSON_VERSION = 1.0.3
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/README b/README
index f118f32..b849b92 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
1Lua CJSON v1.0.2 1Lua CJSON v1.0.3
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
@@ -58,7 +58,7 @@ RPM
58Linux distributions using RPM should be able to build a package with 58Linux distributions using RPM should be able to build a package with
59the following command: 59the 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
64LuaRocks 64LuaRocks
@@ -66,7 +66,7 @@ LuaRocks
66 66
67Extract the source package into a directory and run: 67Extract 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
72Lua CJSON API 72Lua 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 @@
1package = "lua-cjson" 1package = "lua-cjson"
2version = "1.0.2-1" 2version = "1.0.3-1"
3 3
4source = { 4source = {
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
8description = { 8description = {
@@ -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
4Name: lua-cjson 4Name: lua-cjson
5Version: 1.0.2 5Version: 1.0.3
6Release: 1%{?dist} 6Release: 1%{?dist}
7Summary: JSON support for the Lua language 7Summary: 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