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>2020-04-23 04:16:42 +0300
committerHisham Muhammad <hisham@gobolinux.org>2020-04-23 04:16:42 +0300
commit7c6e1b013caec0602ca4796df3b1d7253a2dd258 (patch)
tree121b8bfea1bd3a51cbab4d7e0281e60ce536b765
parent68c624c686c471b398704e73a8df1a942666e7d5 (diff)
Release 1.8.0v1_8_0
-rw-r--r--doc/us/index.html11
-rw-r--r--src/lfs.c2
-rw-r--r--src/lfs.def2
3 files changed, 12 insertions, 3 deletions
diff --git a/doc/us/index.html b/doc/us/index.html
index 195ab60..5a2afc0 100644
--- a/doc/us/index.html
+++ b/doc/us/index.html
@@ -70,7 +70,7 @@ the underlying directory structure and file attributes.</p>
<h2><a name="status"></a>Status</h2>
-<p>Current version is 1.7.0. It works with Lua 5.1, 5.2 and 5.3, and it runs on various
+<p>Current version is 1.8.0. It works with Lua 5.1, 5.2, 5.3 and 5.4, and it runs on various
flavors of Unix (including Linux, BSDs, macOS) and Windows.</p>
<h2><a name="download"></a>Download</h2>
@@ -86,6 +86,15 @@ $ luarocks install luafilesystem
<h2><a name="history"></a>History</h2>
<dl class="history">
+ <dt><strong>Version 1.8.0</strong> [22/Apr/2020]</dt>
+ <dd><ul>
+ <li>Lua 5.4 support</li>
+ <li>lfs.link and lfs.symlinkattributes now work on Windows</li>
+ <li>MACOSX_DEPLOYMENT_TARGET is configurable in the Makefile</li>
+ <li>Fallback to _POSIX_PATH_MAX when MAXPATHLEN is not avaliable</li>
+ <li>Fixed memory leak in case of realloc failure</li>
+ </ul></dd>
+
<dt><strong>Version 1.7.0</strong> [15/Sep/2017]</dt>
<dd><ul>
<li>symlinkattributes function now provides 'target' field, containing name of the file that the symlink points to.</li>
diff --git a/src/lfs.c b/src/lfs.c
index 99a35bb..95ab63b 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -87,7 +87,7 @@
#include "lfs.h"
-#define LFS_VERSION "1.7.0"
+#define LFS_VERSION "1.8.0"
#define LFS_LIBNAME "lfs"
#if LUA_VERSION_NUM >= 503 /* Lua 5.3+ */
diff --git a/src/lfs.def b/src/lfs.def
index 4055ff0..bd8c847 100644
--- a/src/lfs.def
+++ b/src/lfs.def
@@ -1,4 +1,4 @@
LIBRARY lfs.dll
-VERSION 1.7
+VERSION 1.8
EXPORTS
luaopen_lfs