Skip to content

Commit

Permalink
release new version 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
starwing committed Jan 27, 2023
1 parent 0870706 commit 953476e
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lpath.c
Expand Up @@ -66,7 +66,7 @@ static void lua_rawsetp(lua_State *L, int idx, const void *p)
# define LUAMOD_API LUALIB_API
#endif

#define LP_VERSION "path 0.3"
#define LP_VERSION "path 0.4"

/* vector routines */

Expand Down
28 changes: 28 additions & 0 deletions rockspecs/lpath-0.4.0-1.rockspec
@@ -0,0 +1,28 @@
package = "lpath"
version = "0.4.0-1"
source = {
url = "git://github.com/starwing/lpath.git",
tag = "0.4.0"
}
description = {
summary = "a OS specific path manipulation module for Lua",
detailed = [[
lpath is a lfs-like Lua module to handle path, file system and file informations.
This module is designed to be easy extend to new system. Now it implements windows using Win32 API (lfs use legacy POSIX APIs on Windows), and POSIX systems.
This module is inspired by Python's os.path and pathlib module. It split into 4 parts: path.info, path.fs, path.env and path itself.
]],
homepage = "https://github.com/starwing/lpath",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
path = "lpath.c"
},
copy_directories = {}
}

0 comments on commit 953476e

Please sign in to comment.