From 8a7ae27c5da39f518e371166a9f9a49875e89611 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Tue, 12 Jan 2016 18:23:21 -0800 Subject: release: 0.2.0 --- lua_uuid-0.1-8.rockspec | 26 -------------------------- lua_uuid-0.2.0-0.rockspec | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 26 deletions(-) delete mode 100644 lua_uuid-0.1-8.rockspec create mode 100644 lua_uuid-0.2.0-0.rockspec diff --git a/lua_uuid-0.1-8.rockspec b/lua_uuid-0.1-8.rockspec deleted file mode 100644 index 5b038fe..0000000 --- a/lua_uuid-0.1-8.rockspec +++ /dev/null @@ -1,26 +0,0 @@ -package = "lua_uuid" -version = "0.1-8" -source = { - url = "https://github.com/Mashape/lua-uuid/archive/0.1-8.tar.gz", - dir = "lua-uuid-0.1-8" -} -description = { - summary = "UUID generation", - detailed = [[ - This is an utility that leverages libuuid to generate UUID strings - ]], - homepage = "https://github.com/Mashape/lua-uuid", - license = "MIT" -} -dependencies = { - "lua >= 5.1" -} -build = { - type = "builtin", - modules = { - ["lua_uuid"] = { - sources = { "lua_uuid.c" }, - libraries = { "uuid" }, - }, - } -} diff --git a/lua_uuid-0.2.0-0.rockspec b/lua_uuid-0.2.0-0.rockspec new file mode 100644 index 0000000..d95cc47 --- /dev/null +++ b/lua_uuid-0.2.0-0.rockspec @@ -0,0 +1,26 @@ +package = "lua_uuid" +version = "0.2.0-0" +source = { + url = "https://github.com/Mashape/lua-uuid/archive/0.2.0.tar.gz", + tag = "0.2.0" +} +description = { + summary = "UUID generation", + detailed = [[ + This is an utility that leverages libuuid to generate UUID strings + ]], + homepage = "https://github.com/Mashape/lua-uuid", + license = "MIT" +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + ["lua_uuid"] = { + sources = { "lua_uuid.c" }, + libraries = { "uuid" } + } + } +} -- cgit v1.2.3-54-g00ecf