From 781e123f5cfc0f8056209b33ba53fde46d1fd662 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Wed, 23 Oct 2013 12:05:11 +0800 Subject: [PATCH] back to dev (0.9.6-dev) --- package.xml | 15 ++++++++------- php_lua.h | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/package.xml b/package.xml index a2961a7..58becc8 100644 --- a/package.xml +++ b/package.xml @@ -1,6 +1,6 @@ - + lua Embedded lua interpreter "Lua is a powerful, fast, light-weight, embeddable scripting language." @@ -27,17 +27,16 @@ - 0.9.1 - 2011-11-24 + 0.9.5 + 2013-10-23 PHP beta - - Compatible with PHP5.3+ -- Fix ZTS build -- Fix mem leak when get value from lua + - 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) - @@ -52,6 +51,8 @@ + + diff --git a/php_lua.h b/php_lua.h index 9e95af1..672f09f 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.5" +#define PHP_LUA_VERSION "0.9.6-dev" #define Z_LUAVAL_P(obj) ((php_lua_object*)(zend_object_store_get_object(obj TSRMLS_CC)))->L struct _php_lua_object {