Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keplerproject/luafilesystem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-01-15 21:58:20 +0300
committerHisham Muhammad <hisham@gobolinux.org>2015-01-15 21:58:20 +0300
commit8014725009e195ffb502bcd65ca4e93b60a1b21c (patch)
tree3365846317aa4de62d542be9c116b4aaeb912e43
parent0a82aae451c5c95ceacb5fcb235f4d1ea964f5f5 (diff)
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.
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.</p>
<h2><a name="status"></a>Status</h2>
-<p>Current version is 1.6.2. It was developed for Lua 5.1 but also
- works with Lua 5.2.</p>
+<p>Current version is 1.6.3. It works with Lua 5.1, 5.2 and 5.3.</p>
<h2><a name="download"></a>Download</h2>
@@ -83,6 +82,12 @@ page.</p>
<h2><a name="history"></a>History</h2>
<dl class="history">
+ <dt><strong>Version 1.6.3</strong> [15/Jan/2015]</dt>
+ <dd><ul>
+ <li>Lua 5.3 support.</li>
+ <li>Assorted bugfixes.</li>
+ </ul></dd>
+
<dt><strong>Version 1.6.2</strong> [??/Oct/2012]</dt>
<dd><ul>
<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 @@
+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 */