aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xbuild-packages.sh6
-rw-r--r--lua-cjson-2.0devel-1.rockspec (renamed from lua-cjson-1.1devel-1.rockspec)4
-rw-r--r--lua-cjson.spec2
-rw-r--r--lua_cjson.c2
-rw-r--r--manual.txt8
-rwxr-xr-xruntests.sh2
-rwxr-xr-xtests/test.lua2
8 files changed, 14 insertions, 14 deletions
diff --git a/NEWS b/NEWS
index ba48b9c..50057e6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
1Version 1.0.5 (?) 1Version 2.0.0 (Jan ? 2012)
2* Added support for Lua 5.2 2* Added support for Lua 5.2
3* Added HTML reference manual 3* Added HTML reference manual
4* Added CMake build support 4* Added CMake build support
diff --git a/build-packages.sh b/build-packages.sh
index db5903b..2dacb8c 100755
--- a/build-packages.sh
+++ b/build-packages.sh
@@ -5,7 +5,7 @@
5# Build packages. Use current checked out version, or a specific tag/commit. 5# Build packages. Use current checked out version, or a specific tag/commit.
6 6
7# Files requiring a version bump 7# Files requiring a version bump
8VERSION_FILES="lua-cjson-1.1devel-1.rockspec lua-cjson.spec lua_cjson.c manual.txt runtests.sh tests/test.lua" 8VERSION_FILES="lua-cjson-2.0devel-1.rockspec lua-cjson.spec lua_cjson.c manual.txt runtests.sh tests/test.lua"
9 9
10[ "$1" ] && BRANCH="$1" || BRANCH="`git describe --match '1.[0-9]*'`" 10[ "$1" ] && BRANCH="$1" || BRANCH="`git describe --match '1.[0-9]*'`"
11VERSION="`git describe --match '1.[0-9]*' $BRANCH`" 11VERSION="`git describe --match '1.[0-9]*' $BRANCH`"
@@ -25,8 +25,8 @@ git archive --prefix="$PREFIX/" "$BRANCH" | tar xf - -C "$BUILDROOT"
25cd "$BUILDROOT" 25cd "$BUILDROOT"
26 26
27cd "$PREFIX" 27cd "$PREFIX"
28rename 1.1devel "$VERSION" $VERSION_FILES 28rename 2.0devel "$VERSION" $VERSION_FILES
29perl -pi -e "s/\\b1.1devel\\b/$VERSION/g" ${VERSION_FILES/1.1devel/$VERSION}; 29perl -pi -e "s/\\b2.0devel\\b/$VERSION/g" ${VERSION_FILES/2.0devel/$VERSION};
30cd .. 30cd ..
31 31
32make -C "$PREFIX" doc 32make -C "$PREFIX" doc
diff --git a/lua-cjson-1.1devel-1.rockspec b/lua-cjson-2.0devel-1.rockspec
index c8c4367..9a2ac04 100644
--- a/lua-cjson-1.1devel-1.rockspec
+++ b/lua-cjson-2.0devel-1.rockspec
@@ -1,8 +1,8 @@
1package = "lua-cjson" 1package = "lua-cjson"
2version = "1.1devel-1" 2version = "2.0devel-1"
3 3
4source = { 4source = {
5 url = "http://www.kyne.com.au/~mark/software/download/lua-cjson-1.1devel.zip", 5 url = "http://www.kyne.com.au/~mark/software/download/lua-cjson-2.0devel.zip",
6} 6}
7 7
8description = { 8description = {
diff --git a/lua-cjson.spec b/lua-cjson.spec
index 4642857..108651c 100644
--- a/lua-cjson.spec
+++ b/lua-cjson.spec
@@ -3,7 +3,7 @@
3%define luadatadir %{_datadir}/lua/%{luaver} 3%define luadatadir %{_datadir}/lua/%{luaver}
4 4
5Name: lua-cjson 5Name: lua-cjson
6Version: 1.1devel 6Version: 2.0devel
7Release: 1%{?dist} 7Release: 1%{?dist}
8Summary: A fast JSON encoding/parsing library for Lua 8Summary: A fast JSON encoding/parsing library for Lua
9 9
diff --git a/lua_cjson.c b/lua_cjson.c
index f5af350..b14c242 100644
--- a/lua_cjson.c
+++ b/lua_cjson.c
@@ -51,7 +51,7 @@
51#endif 51#endif
52 52
53#ifndef CJSON_VERSION 53#ifndef CJSON_VERSION
54#define CJSON_VERSION "1.1devel" 54#define CJSON_VERSION "2.0devel"
55#endif 55#endif
56 56
57/* Workaround for Solaris platforms missing isinf() */ 57/* Workaround for Solaris platforms missing isinf() */
diff --git a/manual.txt b/manual.txt
index 35b2c2e..8ca4778 100644
--- a/manual.txt
+++ b/manual.txt
@@ -1,4 +1,4 @@
1= Lua CJSON 1.1devel Manual = 1= Lua CJSON 2.0devel Manual =
2Mark Pulford <mark@kyne.com.au> 2Mark Pulford <mark@kyne.com.au>
3:revdate: November 30, 2011 3:revdate: November 30, 2011
4 4
@@ -84,7 +84,7 @@ the included RPM spec file. Install the +rpm-build+ package (or
84similar) then: 84similar) then:
85 85
86[source,sh] 86[source,sh]
87rpmbuild -tb lua-cjson-1.1devel.tar.gz 87rpmbuild -tb lua-cjson-2.0devel.tar.gz
88rpm -Uvh $newly_built_lua_cjson_rpm 88rpm -Uvh $newly_built_lua_cjson_rpm
89 89
90 90
@@ -97,7 +97,7 @@ modules on a wide range of platforms (including Windows).
97Extract the Lua CJSON source package into a directory and run: 97Extract the Lua CJSON source package into a directory and run:
98 98
99[source,sh] 99[source,sh]
100cd lua-cjson-1.1devel 100cd lua-cjson-2.0devel
101luarocks make 101luarocks make
102 102
103[NOTE] 103[NOTE]
@@ -536,7 +536,7 @@ The name of the Lua CJSON module (+"cjson"+).
536_VERSION 536_VERSION
537~~~~~~~~ 537~~~~~~~~
538 538
539The version number of the Lua CJSON module (Eg, +"1.1devel"+). 539The version number of the Lua CJSON module (Eg, +"2.0devel"+).
540 540
541 541
542null 542null
diff --git a/runtests.sh b/runtests.sh
index a301488..cdc33e6 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -1,7 +1,7 @@
1#!/bin/sh 1#!/bin/sh
2 2
3PLATFORM="`uname -s`" 3PLATFORM="`uname -s`"
4[ "$1" ] && VERSION="$1" || VERSION="1.1devel" 4[ "$1" ] && VERSION="$1" || VERSION="2.0devel"
5 5
6set -e 6set -e
7 7
diff --git a/tests/test.lua b/tests/test.lua
index 8c50b02..ac6419a 100755
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -92,7 +92,7 @@ local cjson_tests = {
92 -- Test API variables 92 -- Test API variables
93 { "Check module name, version", 93 { "Check module name, version",
94 function () return json._NAME, json._VERSION end, { }, 94 function () return json._NAME, json._VERSION end, { },
95 true, { "cjson", "1.1devel" } }, 95 true, { "cjson", "2.0devel" } },
96 96
97 -- Test decoding simple types 97 -- Test decoding simple types
98 { "Decode string", 98 { "Decode string",