From 8014725009e195ffb502bcd65ca4e93b60a1b21c Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 15 Jan 2015 16:58:20 -0200 Subject: Prepare for release 1.6.3 --- README | 4 ++++ doc/us/index.html | 9 +++++++-- rockspecs/luafilesystem-1.6.3-1.rockspec | 28 ++++++++++++++++++++++++++++ src/lfs.c | 2 +- 4 files changed, 40 insertions(+), 3 deletions(-) create mode 100644 rockspecs/luafilesystem-1.6.3-1.rockspec diff --git a/README b/README index db67923..005c38e 100644 --- a/README +++ b/README @@ -22,6 +22,10 @@ Please check the documentation at doc/us/ for more information. History ------- +Version 1.6.3 [15/Jan/2012] + * Lua 5.3 compatibility + * Assorted bugfixes + Version 1.6.2 [??/Oct/2012] * Full Lua 5.2 compatibility (with Lua 5.1 fallbacks) diff --git a/doc/us/index.html b/doc/us/index.html index 5c05085..2bb7f5d 100644 --- a/doc/us/index.html +++ b/doc/us/index.html @@ -71,8 +71,7 @@ the underlying directory structure and file attributes.

Status

-

Current version is 1.6.2. It was developed for Lua 5.1 but also - works with Lua 5.2.

+

Current version is 1.6.3. It works with Lua 5.1, 5.2 and 5.3.

Download

@@ -83,6 +82,12 @@ page.

History

+
Version 1.6.3 [15/Jan/2015]
+
    +
  • Lua 5.3 support.
  • +
  • Assorted bugfixes.
  • +
+
Version 1.6.2 [??/Oct/2012]
  • Full Lua 5.2 compatibility (with Lua 5.1 fallbacks)
  • diff --git a/rockspecs/luafilesystem-1.6.3-1.rockspec b/rockspecs/luafilesystem-1.6.3-1.rockspec new file mode 100644 index 0000000..89b25d4 --- /dev/null +++ b/rockspecs/luafilesystem-1.6.3-1.rockspec @@ -0,0 +1,28 @@ +package = "LuaFileSystem" +version = "1.6.3-1" +source = { + url = "git://github.com/keplerproject/luafilesystem", + tag = "v_1_6_3", +} +description = { + summary = "File System Library for the Lua Programming Language", + detailed = [[ + LuaFileSystem is a Lua library developed to complement the set of + functions related to file systems offered by the standard Lua + distribution. LuaFileSystem offers a portable way to access the + underlying directory structure and file attributes. + ]], + license = "MIT/X11", +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + lfs = "src/lfs.c" + }, + copy_directories = { + "doc", "tests" + } +} diff --git a/src/lfs.c b/src/lfs.c index b84ca82..4cb5875 100644 --- a/src/lfs.c +++ b/src/lfs.c @@ -66,7 +66,7 @@ #include "lfs.h" -#define LFS_VERSION "1.6.2" +#define LFS_VERSION "1.6.3" #define LFS_LIBNAME "lfs" #if LUA_VERSION_NUM >= 503 /* Lua 5.3 */ -- cgit v1.2.3