aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-11-27 18:53:22 +1030
committerMark Pulford <mark@kyne.com.au>2011-11-27 18:53:22 +1030
commitd6b3f9ceb6c73121d9fa52bf66b7cfa59b611680 (patch)
tree977c1343194983a89baf28b07797988b14ba87c8
parentbb3931122551240a08dbfaa1a84d55906e3d3cb6 (diff)
downloadlua-cjson-d6b3f9ceb6c73121d9fa52bf66b7cfa59b611680.tar.gz
lua-cjson-d6b3f9ceb6c73121d9fa52bf66b7cfa59b611680.tar.bz2
lua-cjson-d6b3f9ceb6c73121d9fa52bf66b7cfa59b611680.zip
Update version to 1.0.4
-rw-r--r--Makefile2
-rw-r--r--README6
-rw-r--r--lua-cjson-1.0.4-1.rockspec (renamed from lua-cjson-1.0.3-1.rockspec)6
-rw-r--r--lua-cjson.spec5
4 files changed, 11 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 082c720..10e0ba1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1CJSON_VERSION = 1.0.3 1CJSON_VERSION = 1.0.4
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 f863d73..e2e8dbc 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
1Lua CJSON v1.0.3 1Lua CJSON v1.0.4
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
@@ -65,7 +65,7 @@ RPM-based Linux distributions should be able to create a package using
65the included RPM spec file. Install the "rpm-build" package, or 65the included RPM spec file. Install the "rpm-build" package, or
66similar, then: 66similar, then:
67 67
68 # rpmbuild -tb lua-cjson-1.0.3.tar.gz 68 # rpmbuild -tb lua-cjson-1.0.4.tar.gz
69 69
70 70
71LuaRocks 71LuaRocks
@@ -76,7 +76,7 @@ modules on a wide range of platforms (including Windows).
76 76
77Extract the Lua CJSON source package into a directory and run: 77Extract the Lua CJSON source package into a directory and run:
78 78
79 # cd lua-cjson-1.0.3; luarocks make 79 # cd lua-cjson-1.0.4; luarocks make
80 80
81See the LuaRocks documentation for further details. 81See the LuaRocks documentation for further details.
82 82
diff --git a/lua-cjson-1.0.3-1.rockspec b/lua-cjson-1.0.4-1.rockspec
index 28514e1..b08032b 100644
--- a/lua-cjson-1.0.3-1.rockspec
+++ b/lua-cjson-1.0.4-1.rockspec
@@ -1,8 +1,8 @@
1package = "lua-cjson" 1package = "lua-cjson"
2version = "1.0.3-1" 2version = "1.0.4-1"
3 3
4source = { 4source = {
5 url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.3.zip", 5 url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.4.zip",
6} 6}
7 7
8description = { 8description = {
@@ -30,7 +30,7 @@ build = {
30-- thread-safety isn't required. 30-- thread-safety isn't required.
31-- USE_INTERNAL_ISINF: Provide internal isinf() implementation. Required 31-- USE_INTERNAL_ISINF: Provide internal isinf() implementation. Required
32-- on some Solaris platforms. 32-- on some Solaris platforms.
33 defines = { "VERSION=\"1.0.3\"", "USE_POSIX_SETLOCALE" } 33 defines = { "VERSION=\"1.0.4\"", "USE_POSIX_SETLOCALE" }
34 } 34 }
35 }, 35 },
36 copy_directories = { "tests" } 36 copy_directories = { "tests" }
diff --git a/lua-cjson.spec b/lua-cjson.spec
index 075f461..ca502b3 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.3 5Version: 1.0.4
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 Nov 27 2011 Mark Pulford <mark@kyne.com.au> - 1.0.4-1
47- Updated for 1.0.4
48
46* Wed Sep 15 2011 Mark Pulford <mark@kyne.com.au> - 1.0.3-1 49* Wed Sep 15 2011 Mark Pulford <mark@kyne.com.au> - 1.0.3-1
47- Updated for 1.0.3 50- Updated for 1.0.3
48 51