releasing 2.0.5

This commit is contained in:
Xinchen Hui
2017-12-31 12:33:16 +08:00
parent c4c61f05bf
commit 15f58c43fb
3 changed files with 29 additions and 10 deletions

2
lua.c
View File

@@ -782,7 +782,7 @@ zend_function_entry lua_class_methods[] = {
PHP_ME(lua, getVersion, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_ALLOW_STATIC)
PHP_ME(lua, registerCallback, arginfo_lua_register, ZEND_ACC_PUBLIC)
PHP_MALIAS(lua, __call, call, arginfo_lua_call, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}
PHP_FE_END
};
/* }}} */

View File

@@ -23,11 +23,11 @@
<email>msaraujo@php.net</email>
<active>yes</active>
</developer>
<date>2017-07-12</date>
<date>2017-12-31</date>
<time>19:15:00</time>
<version>
<release>2.0.4</release>
<api>2.0.4</api>
<release>2.0.5</release>
<api>2.0.5</api>
</version>
<stability>
<release>stable</release>
@@ -35,7 +35,9 @@
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Fixed bug #73964 (Segmentation fault)
- Refactor LuaClosure. (SaraG)
- Fix non-string member access in read/write prop. (SaraG)
- Fix allocation of lua object. (SaraG)
</notes>
<contents>
<dir name="/">
@@ -83,10 +85,10 @@
<extsrcrelease />
<changelog>
<release>
<date>2017-02-10</date>
<date>2017-12-31</date>
<version>
<release>2.0.3</release>
<api>2.0.3</api>
<release>2.0.5</release>
<api>2.0.5</api>
</version>
<stability>
<release>stable</release>
@@ -94,7 +96,9 @@
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed issue #20 (PHP 7: Lua::eval(): unsupported type `unknown' for lua)
- Refactor LuaClosure. (SaraG)
- Fix non-string member access in read/write prop. (SaraG)
- Fix allocation of lua object. (SaraG)
</notes>
</release>
@@ -113,6 +117,21 @@
- Fixed bug #73964 (Segmentation fault)
</notes>
</release>
<release>
<date>2017-02-10</date>
<version>
<release>2.0.3</release>
<api>2.0.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP License</license>
<notes>
- Fixed issue #20 (PHP 7: Lua::eval(): unsupported type `unknown' for lua)
</notes>
</release>
<release>
<date>2016-05-26</date>

View File

@@ -48,7 +48,7 @@ extern zend_module_entry lua_module_entry;
#define LUA_G(v) (lua_globals.v)
#endif
#define PHP_LUA_VERSION "2.0.5-dev"
#define PHP_LUA_VERSION "2.0.5"
struct _php_lua_object {
lua_State *L;