diff options
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | doc/us/index.html | 9 | ||||
-rw-r--r-- | rockspecs/luafilesystem-1.6.3-1.rockspec | 28 | ||||
-rw-r--r-- | src/lfs.c | 2 |
4 files changed, 40 insertions, 3 deletions
@@ -22,6 +22,10 @@ Please check the documentation at doc/us/ for more information. | |||
22 | History | 22 | History |
23 | ------- | 23 | ------- |
24 | 24 | ||
25 | Version 1.6.3 [15/Jan/2012] | ||
26 | * Lua 5.3 compatibility | ||
27 | * Assorted bugfixes | ||
28 | |||
25 | Version 1.6.2 [??/Oct/2012] | 29 | Version 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 @@ | |||
1 | package = "LuaFileSystem" | ||
2 | version = "1.6.3-1" | ||
3 | source = { | ||
4 | url = "git://github.com/keplerproject/luafilesystem", | ||
5 | tag = "v_1_6_3", | ||
6 | } | ||
7 | description = { | ||
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 | } | ||
17 | dependencies = { | ||
18 | "lua >= 5.1" | ||
19 | } | ||
20 | build = { | ||
21 | type = "builtin", | ||
22 | modules = { | ||
23 | lfs = "src/lfs.c" | ||
24 | }, | ||
25 | copy_directories = { | ||
26 | "doc", "tests" | ||
27 | } | ||
28 | } | ||
@@ -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 */ |