diff options
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1,15 +1,23 @@ | |||
1 | CHANGES: | 1 | CHANGES: |
2 | 2 | ||
3 | CHANGE 56: BGe 25-Jan-13 | ||
4 | * version 3.4.4 | ||
5 | * bugfix: take into account the fact that "coroutine" is no longer part of base library in Lua 5.2 | ||
6 | * bugfix: if "bit32" was listed in the libraries, it wouldn't open (library list parsing failing on digits) | ||
7 | * bugfix: Use luaL_requiref() to open standard libraries in Lua 5.2 as we should | ||
8 | * bugfix: any Lua state created by Lanes reuses the allocator function of the originating state | ||
9 | * bugfix: don't call on_state_create() while GC is suspended during lua state initialization | ||
10 | |||
3 | CHANGE 55: BGe 24-Jan-13 | 11 | CHANGE 55: BGe 24-Jan-13 |
4 | * version 3.4.3 | 12 | * version 3.4.3 |
5 | * raise an error if lane generator libs specification contains a lib more than once | 13 | * raise an error if lane generator libs specification contains a lib more than once |
6 | * bit32 is a valid lib name in the libs specification (silently ignored by the Lua 5.1 build) | 14 | * bit32 is a valid lib name in the libs specification (silently ignored by the Lua 5.1 build) |
7 | * improved lanes.nameof to search inside table- and userdata- metatables for an object's name | 15 | * improved lanes.nameof to search inside table- and userdata- metatables for an object's name |
8 | * fixed an unwarranted error when trying to discover a function name upon a failed transfer | 16 | * bugfix: fixed an unwarranted error when trying to discover a function name upon a failed transfer |
9 | * contents of package.[path,cpath,preload,loaders|searchers] are pulled *only once* inside keeper states at initialisation | 17 | * contents of package.[path,cpath,preload,loaders|searchers] are pulled *only once* inside keeper states at initialisation |
10 | * Lua function upvalues equal to the global environment aren't copied by value, but bound to the destination's global environment | 18 | * Lua function upvalues equal to the global environment aren't copied by value, but bound to the destination's global environment |
11 | especially useful for Lua 5.2 _ENV | 19 | especially useful for Lua 5.2 _ENV |
12 | * fixed loading of base libraries that didn't create the global tables when built for Lua 5.2 | 20 | * bugfix: fixed loading of base libraries that didn't create the global tables when built for Lua 5.2 |
13 | 21 | ||
14 | CHANGE 54: BGe 10-Jan-13 | 22 | CHANGE 54: BGe 10-Jan-13 |
15 | * version 3.4.2 | 23 | * version 3.4.2 |