From 2bee7de64d4fb5378151b2dd93d0e1ab42c2a417 Mon Sep 17 00:00:00 2001 From: Yonaba Date: Thu, 12 Sep 2013 10:30:47 +0000 Subject: [PATCH] Prepare for 0.1.2 release --- README.md | 1 + rockspecs/lice-lua-0.1.2-1.rockspec | 26 ++++++++++++++++++++++++++ version_history.md | 6 ++++++ 3 files changed, 33 insertions(+) create mode 100644 rockspecs/lice-lua-0.1.2-1.rockspec diff --git a/README.md b/README.md index 2e6ce35..06f747f 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ Generates a BSD-3 license, the default: Generates an MIT license: lua lice.lua mit + lua lice.lua EPL ### Specifying authors/organization diff --git a/rockspecs/lice-lua-0.1.2-1.rockspec b/rockspecs/lice-lua-0.1.2-1.rockspec new file mode 100644 index 0000000..26f0892 --- /dev/null +++ b/rockspecs/lice-lua-0.1.2-1.rockspec @@ -0,0 +1,26 @@ +package = "lice-lua" +version = "0.1.2-1" +source = { + url = "https://github.com/Yonaba/lice-lua/archive/lice-lua-0.1.2-1.tar.gz", + dir = "lice-lua-lice-lua-0.1.2-1" +} +description = { + summary = "Command line license generator for Lua", + detailed = "A minimal command-line tool to generate open source license files", + homepage = "http://github/licenses/lice-lua", + license = "MIT ", + maintainer = "Roland Yonaba " +} +dependencies = { + "lua >= 5.1, < 5.3", + "luafilesystem >= 1.4.2", +} +build = { + type = "none", + install = { + lua = { + ["lice-lua.lice"] = "src/lice.lua", + ["lice-lua.lice-tpl"] = "src/lice-tpl.lua", + } + }, +} \ No newline at end of file diff --git a/version_history.md b/version_history.md index d066bc2..2a922e0 100644 --- a/version_history.md +++ b/version_history.md @@ -1,5 +1,11 @@ #Version history# +##0.1.2 (09/12/2013) + +* Fix: uppercase for license names +* Fix: invalid escape sequence issue with Lua 5.2 +* Fix: passed-in path parsing (from arg[0]) + ##0.1.1 (09/10/13) * Throws an error for unknown opts