aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <--unset>2025-12-28 15:48:49 -0300
committerHisham Muhammad <--unset>2025-12-28 15:48:49 -0300
commita186cca5833691e830ed255e38ace8ff6b870dbf (patch)
tree7edf162a31919a2f6a2b138edaed037c45734f5a
parent31dcb88b128b06cdc2767440cfe685f0890a077f (diff)
downloadluafilesystem-a186cca5833691e830ed255e38ace8ff6b870dbf.tar.gz
luafilesystem-a186cca5833691e830ed255e38ace8ff6b870dbf.tar.bz2
luafilesystem-a186cca5833691e830ed255e38ace8ff6b870dbf.zip
Release 1.9.0HEADv1_9_0master
-rw-r--r--docs/index.html9
-rw-r--r--src/lfs.c2
-rw-r--r--src/lfs.def2
3 files changed, 10 insertions, 3 deletions
diff --git a/docs/index.html b/docs/index.html
index 34e0730..bfc2450 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -70,7 +70,7 @@ the underlying directory structure and file attributes.</p>
70 70
71<h2><a name="status"></a>Status</h2> 71<h2><a name="status"></a>Status</h2>
72 72
73<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 73<p>Current version is 1.9.0. It works with Lua 5.1 to Lua 5.5, and it runs on various
74flavors of Unix (including Linux, BSDs, macOS) and Windows.</p> 74flavors of Unix (including Linux, BSDs, macOS) and Windows.</p>
75 75
76<h2><a name="download"></a>Download</h2> 76<h2><a name="download"></a>Download</h2>
@@ -86,6 +86,13 @@ $ luarocks install luafilesystem
86<h2><a name="history"></a>History</h2> 86<h2><a name="history"></a>History</h2>
87 87
88<dl class="history"> 88<dl class="history">
89 <dt><strong>Version 1.9.0</strong> [28/Dec/2025]</dt>
90 <dd><ul>
91 <li>Lua 5.5 support</li>
92 <li>Fixed some compiler warnings</li>
93 <li>Assorted improvements for Windows</li>
94 </ul></dd>
95
89 <dt><strong>Version 1.8.0</strong> [22/Apr/2020]</dt> 96 <dt><strong>Version 1.8.0</strong> [22/Apr/2020]</dt>
90 <dd><ul> 97 <dd><ul>
91 <li>Lua 5.4 support</li> 98 <li>Lua 5.4 support</li>
diff --git a/src/lfs.c b/src/lfs.c
index 07831aa..6fda53f 100644
--- a/src/lfs.c
+++ b/src/lfs.c
@@ -74,7 +74,7 @@
74 74
75#include "lfs.h" 75#include "lfs.h"
76 76
77#define LFS_VERSION "1.8.0" 77#define LFS_VERSION "1.9.0"
78#define LFS_LIBNAME "lfs" 78#define LFS_LIBNAME "lfs"
79 79
80#if LUA_VERSION_NUM >= 503 /* Lua 5.3+ */ 80#if LUA_VERSION_NUM >= 503 /* Lua 5.3+ */
diff --git a/src/lfs.def b/src/lfs.def
index bd8c847..589b87d 100644
--- a/src/lfs.def
+++ b/src/lfs.def
@@ -1,4 +1,4 @@
1LIBRARY lfs.dll 1LIBRARY lfs.dll
2VERSION 1.8 2VERSION 1.9
3EXPORTS 3EXPORTS
4luaopen_lfs 4luaopen_lfs