diff --git a/package2.xml b/package2.xml index 98b3e85..006b240 100644 --- a/package2.xml +++ b/package2.xml @@ -23,11 +23,11 @@ msaraujo@php.net yes - 2012-03-19 - + 2013-10-23 + - 0.9.4 - 0.9.4 + 0.9.5 + 0.9.5 beta @@ -35,7 +35,9 @@ PHP - - Compatible with lua 5.2 + - Fixed #65097 (nApplyCount release missing) (emptyhua at gmail dot com) + - Trigger E_STRICT when pass an array with index '0' to lua instead of ignoring it + - added support for callable functions and closures as values returned injected into lua engine (harald at octris dot org) @@ -59,6 +61,8 @@ + + @@ -66,7 +70,6 @@ 5.1.0 - 5.4.0 1.4.0 @@ -76,6 +79,24 @@ lua + + 2012-10-23 + + 0.9.5 + 0.9.5 + + + beta + beta + + PHP License + + - Fixed #65097 (nApplyCount release missing) (emptyhua at gmail dot com) + - Trigger E_STRICT when pass an array with index '0' to lua instead of ignoring it + - added support for callable functions and closures as values returned injected into lua engine (harald at octris dot org) + + + 2012-03-19 @@ -91,7 +112,6 @@ - Compatible with lua 5.2 - 2012-01-12 diff --git a/php_lua.h b/php_lua.h index ff3d2e0..9e95af1 100644 --- a/php_lua.h +++ b/php_lua.h @@ -49,7 +49,7 @@ extern zend_module_entry lua_module_entry; #define Z_DELREF_P ZVAL_DELREF #endif -#define PHP_LUA_VERSION "0.9.4" +#define PHP_LUA_VERSION "0.9.5" #define Z_LUAVAL_P(obj) ((php_lua_object*)(zend_object_store_get_object(obj TSRMLS_CC)))->L struct _php_lua_object {