mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-23 03:23:06 +00:00
Prepare for release 1.6.3
This commit is contained in:
4
README
4
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)
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
28
rockspecs/luafilesystem-1.6.3-1.rockspec
Normal file
28
rockspecs/luafilesystem-1.6.3-1.rockspec
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user