From 7c6e1b013caec0602ca4796df3b1d7253a2dd258 Mon Sep 17 00:00:00 2001
From: Hisham Muhammad
Date: Wed, 22 Apr 2020 22:16:42 -0300
Subject: Release 1.8.0
---
doc/us/index.html | 11 ++++++++++-
src/lfs.c | 2 +-
src/lfs.def | 2 +-
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.
Status
-Current version is 1.7.0. It works with Lua 5.1, 5.2 and 5.3, and it runs on various
+
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.
Download
@@ -86,6 +86,15 @@ $ luarocks install luafilesystem
History
+ - Version 1.8.0 [22/Apr/2020]
+
+ - Lua 5.4 support
+ - lfs.link and lfs.symlinkattributes now work on Windows
+ - MACOSX_DEPLOYMENT_TARGET is configurable in the Makefile
+ - Fallback to _POSIX_PATH_MAX when MAXPATHLEN is not avaliable
+ - Fixed memory leak in case of realloc failure
+
+
- Version 1.7.0 [15/Sep/2017]
- symlinkattributes function now provides 'target' field, containing name of the file that the symlink points to.
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
--
cgit v1.2.3-55-g6feb