From fb0c67b1c95b6a595c0cd34a66136af6193b4d1b Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Sat, 26 Jan 2013 20:21:39 +0100 Subject: version 3.4.4 * bugfix: take into account the fact that "coroutine" is no longer part of base library in Lua 5.2 * bugfix: if "bit32" was listed in the libraries, it wouldn't open (library list parsing failing on digits) * bugfix: Use luaL_requiref() to open standard libraries in Lua 5.2 as we should * bugfix: any Lua state created by Lanes reuses the allocator function of the originating state * bugfix: don't call on_state_create() while GC is suspended during lua state initialization --- CHANGES | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index 52ec52d..fc29440 100644 --- a/CHANGES +++ b/CHANGES @@ -1,15 +1,23 @@ CHANGES: +CHANGE 56: BGe 25-Jan-13 + * version 3.4.4 + * bugfix: take into account the fact that "coroutine" is no longer part of base library in Lua 5.2 + * bugfix: if "bit32" was listed in the libraries, it wouldn't open (library list parsing failing on digits) + * bugfix: Use luaL_requiref() to open standard libraries in Lua 5.2 as we should + * bugfix: any Lua state created by Lanes reuses the allocator function of the originating state + * bugfix: don't call on_state_create() while GC is suspended during lua state initialization + CHANGE 55: BGe 24-Jan-13 * version 3.4.3 * raise an error if lane generator libs specification contains a lib more than once * bit32 is a valid lib name in the libs specification (silently ignored by the Lua 5.1 build) * improved lanes.nameof to search inside table- and userdata- metatables for an object's name - * fixed an unwarranted error when trying to discover a function name upon a failed transfer + * bugfix: fixed an unwarranted error when trying to discover a function name upon a failed transfer * contents of package.[path,cpath,preload,loaders|searchers] are pulled *only once* inside keeper states at initialisation * Lua function upvalues equal to the global environment aren't copied by value, but bound to the destination's global environment especially useful for Lua 5.2 _ENV - * fixed loading of base libraries that didn't create the global tables when built for Lua 5.2 + * bugfix: fixed loading of base libraries that didn't create the global tables when built for Lua 5.2 CHANGE 54: BGe 10-Jan-13 * version 3.4.2 -- cgit v1.2.3-55-g6feb