Skip to content

Commit

Permalink
Release 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Apr 23, 2020
1 parent 68c624c commit 7c6e1b0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion doc/us/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h2><a name="overview"></a>Overview</h2>

<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>
Expand All @@ -86,6 +86,15 @@ <h2><a name="download"></a>Download</h2>
<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>
Expand Down
2 changes: 1 addition & 1 deletion src/lfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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+ */
Expand Down
2 changes: 1 addition & 1 deletion src/lfs.def
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LIBRARY lfs.dll
VERSION 1.7
VERSION 1.8
EXPORTS
luaopen_lfs

0 comments on commit 7c6e1b0

Please sign in to comment.