Changelog for lua-2.1.0
Changelog
lua
uses PVP Versioning.
lua-2.1.0
Released 29-01-2022.
-
The functions
lua_rawget
andlua_rawgeti
now return the type of the value that was pushed to the stack. -
Added bindings to unsafe function
lua_arith
. A new typeArithOPCode
for arithmetic operations is added, as are pattern synonyms for the supported operations. These are:- LUA_OPADD
- LUA_OPSUB
- LUA_OPMUL
- LUA_OPDIV
- LUA_OPIDIV
- LUA_OPMOD
- LUA_OPPOW
- LUA_OPUNM
- LUA_OPBNOT
- LUA_OPBAND
- LUA_OPBOR
- LUA_OPBXOR
- LUA_OPSHL
- LUA_OPSHR
-
Added ersatz functions
hslua_arith
andhsluaL_requiref
, wrappinglua_artih
andluaL_requiref
, respectively. Both functions catch any error resulting from the call. -
Made types
OPCode
,StatusCode
, andGCCode
instances of type classShow
. -
The
Show
instances of Integer and Number now behave like those of the wrapped types. Both types are now also instance ofRead
. -
Removed
hslua_userdata_gc
fromhslua.h
.
lua-2.0.2
Released 2021-11-26.
- Make sure lualib.h is available through this package. The header file contains info on how and under which name the standard library is loaded.
lua-2.0.1
Released 2021-11-03.
- Added bindings to
lua_rotate
andlua_version
.
lua-2.0.0.1
Released 2021-10-30.
- Only install includes when using the Lua code shipped with the package (Ellie Hermaszewska). Cabal no longer tries to install the header files if a system-wide installation is used.
lua-2.0.0
Released 2021-10-21.
-
Module hierarchy moved from
Foreign.Lua.Raw
toLua
. -
Documentation has been improved.
-
Added new function
withNewState
to run Lua operations. -
New modules
Lua.Ersatz
containing all bindings to safe ersatz functions. -
Higher level and enum types have been removed, only the low-level “code” types are kept in this package.
-
Constants are now represented as pattern synonyms like
LUA_OK
. -
Provide bindings to more functions:
lua_is...
type-checking functions;lua_pushstring
to push plain CStrings;- auxiliary functions
luaL_loadfile
, andluaL_loadfilex
;
- unsafe functions
lua_gettable
,lua_settable
,lua_getglobal
, andlua_setglobal
.
-
The function
lua_pop
now expects aCInt
instead of aStackIndex
. -
New StackIndex constructor functions
nthTop
,nthBottom
,nth
, andtop
. -
Avoid unnecessary modification of HSFUN metatable.
-
Various cleanups and test improvements.
lua-1.0.0
Released 2021-02-18.
- Initially created. Contains all modules in the
Foreign.Lua.Raw
hierarchy fromhslua-1.3
. Documentation has been improved.