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.
Status
-Current version is 1.8.0. It works with Lua 5.1, 5.2, 5.3 and 5.4, and it runs on various
+
Current version is 1.9.0. It works with Lua 5.1 to Lua 5.5, and it runs on various
flavors of Unix (including Linux, BSDs, macOS) and Windows.
Download
@@ -86,6 +86,13 @@ $ luarocks install luafilesystem
History
+ - Version 1.9.0 [28/Dec/2025]
+
+ - Lua 5.5 support
+ - Fixed some compiler warnings
+ - Assorted improvements for Windows
+
+
- Version 1.8.0 [22/Apr/2020]
- Lua 5.4 support
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 @@
#include "lfs.h"
-#define LFS_VERSION "1.8.0"
+#define LFS_VERSION "1.9.0"
#define LFS_LIBNAME "lfs"
#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 @@
LIBRARY lfs.dll
-VERSION 1.8
+VERSION 1.9
EXPORTS
luaopen_lfs