diff --git a/package.xml b/package.xml index be8f3ba..d399501 100644 --- a/package.xml +++ b/package.xml @@ -17,10 +17,10 @@ yes 2015-03-13 - + - 0.1.5 - 0.1.5 + 0.2.0 + 0.2.0 beta @@ -28,7 +28,15 @@ The MIT License (MIT) -- Fix package +- adapt to latest v8 API (v8 versions from 3.24.6 up to latest 4.3 branch supported now) +- v8 debugging support +- apply time & memory limits to V8Function calls +- support mapping of PHP objects implementing ArrayAccess to native arrays +- new API to set limits: setTimeLimit & setMemoryLimit methods on V8Js object +- typesafe JavaScript function wrappers +- improved back-and-forth object passing (rewrapping, correcty isolate unlocking) +- fix property and method visibility issues +- fix memory leaks @@ -160,14 +168,14 @@ - + - + @@ -285,5 +293,28 @@ - Fix package + + + 0.2.0 + 0.2.0 + + + beta + beta + + 2015-03-13 + The MIT License (MIT) + +- adapt to latest v8 API (v8 versions from 3.24.6 up to latest 4.3 branch supported now) +- v8 debugging support +- apply time & memory limits to V8Function calls +- support mapping of PHP objects implementing ArrayAccess to native arrays +- new API to set limits: setTimeLimit & setMemoryLimit methods on V8Js object +- typesafe JavaScript function wrappers +- improved back-and-forth object passing (rewrapping, correcty isolate unlocking) +- fix property and method visibility issues +- fix memory leaks + + diff --git a/php_v8js_macros.h b/php_v8js_macros.h index e2a2771..f1f1478 100644 --- a/php_v8js_macros.h +++ b/php_v8js_macros.h @@ -53,7 +53,7 @@ extern "C" { #endif /* V8Js Version */ -#define PHP_V8JS_VERSION "0.1.5" +#define PHP_V8JS_VERSION "0.2.0" /* Hidden field name used to link JS wrappers with underlying PHP object */ #define PHPJS_OBJECT_KEY "phpjs::object"