aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-01-15 16:58:20 -0200
committerHisham Muhammad <hisham@gobolinux.org>2015-01-15 16:58:20 -0200
commit8014725009e195ffb502bcd65ca4e93b60a1b21c (patch)
tree3365846317aa4de62d542be9c116b4aaeb912e43
parent0a82aae451c5c95ceacb5fcb235f4d1ea964f5f5 (diff)
downloadluafilesystem-1_6_3.tar.gz
luafilesystem-1_6_3.tar.bz2
luafilesystem-1_6_3.zip
Prepare for release 1.6.3v_1_6_3v1_6_3
-rw-r--r--README4
-rw-r--r--doc/us/index.html9
-rw-r--r--rockspecs/luafilesystem-1.6.3-1.rockspec28
-rw-r--r--src/lfs.c2
4 files changed, 40 insertions, 3 deletions
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.
22History 22History
23------- 23-------
24 24
25Version 1.6.3 [15/Jan/2012]
26 * Lua 5.3 compatibility
27 * Assorted bugfixes
28
25Version 1.6.2 [??/Oct/2012] 29Version 1.6.2 [??/Oct/2012]
26 * Full Lua 5.2 compatibility (with Lua 5.1 fallbacks) 30 * Full Lua 5.2 compatibility (with Lua 5.1 fallbacks)
27 31
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.</p>
71 71
72<h2><a name="status"></a>Status</h2> 72<h2><a name="status"></a>Status</h2>
73 73
74<p>Current version is 1.6.2. It was developed for Lua 5.1 but also 74<p>Current version is 1.6.3. It works with Lua 5.1, 5.2 and 5.3.</p>
75 works with Lua 5.2.</p>
76 75
77<h2><a name="download"></a>Download</h2> 76<h2><a name="download"></a>Download</h2>
78 77
@@ -83,6 +82,12 @@ page.</p>
83<h2><a name="history"></a>History</h2> 82<h2><a name="history"></a>History</h2>
84 83
85<dl class="history"> 84<dl class="history">
85 <dt><strong>Version 1.6.3</strong> [15/Jan/2015]</dt>
86 <dd><ul>
87 <li>Lua 5.3 support.</li>
88 <li>Assorted bugfixes.</li>
89 </ul></dd>
90
86 <dt><strong>Version 1.6.2</strong> [??/Oct/2012]</dt> 91 <dt><strong>Version 1.6.2</strong> [??/Oct/2012]</dt>
87 <dd><ul> 92 <dd><ul>
88 <li>Full Lua 5.2 compatibility (with Lua 5.1 fallbacks)</li> 93 <li>Full Lua 5.2 compatibility (with Lua 5.1 fallbacks)</li>
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 @@
1package = "LuaFileSystem"
2version = "1.6.3-1"
3source = {
4 url = "git://github.com/keplerproject/luafilesystem",
5 tag = "v_1_6_3",
6}
7description = {
8 summary = "File System Library for the Lua Programming Language",
9 detailed = [[
10 LuaFileSystem is a Lua library developed to complement the set of
11 functions related to file systems offered by the standard Lua
12 distribution. LuaFileSystem offers a portable way to access the
13 underlying directory structure and file attributes.
14 ]],
15 license = "MIT/X11",
16}
17dependencies = {
18 "lua >= 5.1"
19}
20build = {
21 type = "builtin",
22 modules = {
23 lfs = "src/lfs.c"
24 },
25 copy_directories = {
26 "doc", "tests"
27 }
28}
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 @@
66 66
67#include "lfs.h" 67#include "lfs.h"
68 68
69#define LFS_VERSION "1.6.2" 69#define LFS_VERSION "1.6.3"
70#define LFS_LIBNAME "lfs" 70#define LFS_LIBNAME "lfs"
71 71
72#if LUA_VERSION_NUM >= 503 /* Lua 5.3 */ 72#if LUA_VERSION_NUM >= 503 /* Lua 5.3 */