From 1fc923da45731b39e6aea9f50543cd7e8b0e4ad8 Mon Sep 17 00:00:00 2001 From: Mark Pulford Date: Wed, 10 Aug 2011 20:47:32 +0930 Subject: Update version to 1.0.3 --- Makefile | 2 +- README | 6 +++--- lua-cjson-1.0.2-1.rockspec | 31 ------------------------------- lua-cjson-1.0.3-1.rockspec | 31 +++++++++++++++++++++++++++++++ lua-cjson.spec | 5 ++++- 5 files changed, 39 insertions(+), 36 deletions(-) delete mode 100644 lua-cjson-1.0.2-1.rockspec create mode 100644 lua-cjson-1.0.3-1.rockspec diff --git a/Makefile b/Makefile index 42919c9..cfc7a74 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CJSON_VERSION = 1.0.2 +CJSON_VERSION = 1.0.3 LUA_VERSION = 5.1 # 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 @@ -Lua CJSON v1.0.2 +Lua CJSON v1.0.3 ================ Lua CJSON is covered by the MIT license. See the file "LICENSE" for @@ -58,7 +58,7 @@ RPM Linux distributions using RPM should be able to build a package with the following command: - # rpmbuild -tb lua-cjson-1.0.2.tar.gz + # rpmbuild -tb lua-cjson-1.0.3.tar.gz LuaRocks @@ -66,7 +66,7 @@ LuaRocks Extract the source package into a directory and run: - # cd lua-cjson-1.0.2; luarocks make + # cd lua-cjson-1.0.3; luarocks make Lua CJSON API diff --git a/lua-cjson-1.0.2-1.rockspec b/lua-cjson-1.0.2-1.rockspec deleted file mode 100644 index e20132e..0000000 --- a/lua-cjson-1.0.2-1.rockspec +++ /dev/null @@ -1,31 +0,0 @@ -package = "lua-cjson" -version = "1.0.2-1" - -source = { - url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.2.zip", -} - -description = { - summary = "Fast JSON encoding/parsing support for Lua", - detailed = [[ - Lua CJSON provides fast UTF-8 JSON parsing/encoding support for Lua, - and has no external dependencies. - ]], - homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php", - license = "MIT" -} - -dependencies = { - "lua >= 5.1" -} - -build = { - type = "builtin", - modules = { - cjson = { - sources = { "lua_cjson.c", "strbuf.c" }, - defines = { "VERSION=\"1.0.2\"" } - } - }, - copy_directories = { "tests" } -} diff --git a/lua-cjson-1.0.3-1.rockspec b/lua-cjson-1.0.3-1.rockspec new file mode 100644 index 0000000..1550ae9 --- /dev/null +++ b/lua-cjson-1.0.3-1.rockspec @@ -0,0 +1,31 @@ +package = "lua-cjson" +version = "1.0.3-1" + +source = { + url = "http://www.kyne.com.au/~mark/software/lua-cjson-1.0.3.zip", +} + +description = { + summary = "Fast JSON encoding/parsing support for Lua", + detailed = [[ + Lua CJSON provides fast UTF-8 JSON parsing/encoding support for Lua, + and has no external dependencies. + ]], + homepage = "http://www.kyne.com.au/~mark/software/lua-cjson.php", + license = "MIT" +} + +dependencies = { + "lua >= 5.1" +} + +build = { + type = "builtin", + modules = { + cjson = { + sources = { "lua_cjson.c", "strbuf.c" }, + defines = { "VERSION=\"1.0.3\"" } + } + }, + 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 @@ %define lualibdir %{_libdir}/lua/%{luaver} Name: lua-cjson -Version: 1.0.2 +Version: 1.0.3 Release: 1%{?dist} Summary: JSON support for the Lua language @@ -43,6 +43,9 @@ rm -rf "$RPM_BUILD_ROOT" %changelog +* Wed Aug ? 2011 Mark Pulford - 1.0.3-1 +- Updated for 1.0.3 + * Sun May 29 2011 Mark Pulford - 1.0.2-1 - Updated for 1.0.2 -- cgit v1.2.3-55-g6feb