diff --git a/lua.c b/lua.c
index acc6b4f..310bf8f 100755
--- a/lua.c
+++ b/lua.c
@@ -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
};
/* }}} */
diff --git a/package.xml b/package.xml
index aff7760..f983e85 100644
--- a/package.xml
+++ b/package.xml
@@ -23,11 +23,11 @@
msaraujo@php.net
yes
- 2017-07-12
+ 2017-12-31
- 2.0.4
- 2.0.4
+ 2.0.5
+ 2.0.5
stable
@@ -35,7 +35,9 @@
PHP
- - Fixed bug #73964 (Segmentation fault)
+ - Refactor LuaClosure. (SaraG)
+ - Fix non-string member access in read/write prop. (SaraG)
+ - Fix allocation of lua object. (SaraG)
@@ -83,10 +85,10 @@
- 2017-02-10
+ 2017-12-31
- 2.0.3
- 2.0.3
+ 2.0.5
+ 2.0.5
stable
@@ -94,7 +96,9 @@
PHP License
- - 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)
@@ -113,6 +117,21 @@
- Fixed bug #73964 (Segmentation fault)
+
+ 2017-02-10
+
+ 2.0.3
+ 2.0.3
+
+
+ stable
+ stable
+
+ PHP License
+
+ - Fixed issue #20 (PHP 7: Lua::eval(): unsupported type `unknown' for lua)
+
+
2016-05-26
diff --git a/php_lua.h b/php_lua.h
index 3feb5e1..9fe6ea6 100644
--- a/php_lua.h
+++ b/php_lua.h
@@ -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;