diff --git a/package.xml b/package.xml
index bbf56b0..71e0693 100644
--- a/package.xml
+++ b/package.xml
@@ -16,11 +16,11 @@
stesie@php.net
yes
- 2015-09-01
-
+ 2015-09-23
+
- 0.2.4
- 0.2.4
+ 0.2.5
+ 0.2.5
beta
@@ -28,7 +28,9 @@
The MIT License (MIT)
-- Fix memory leak with repeated Array exports from PHP to JS
+- Stop JS execution on PHP exceptions (instead of continuing silently)
+- Allow propagation of PHP exceptions to JS context (disabled by default)
+- Add v8js.compat_php_exceptions php.ini switch to switch previous behaviour back on
@@ -92,7 +94,7 @@
-
+
@@ -116,6 +118,7 @@
+
@@ -134,6 +137,13 @@
+
+
+
+
+
+
+
@@ -170,32 +180,32 @@
-
+
-
-
+
+
-
+
-
-
+
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
@@ -387,5 +397,22 @@
- Fix memory leak with repeated Array exports from PHP to JS
+
+
+ 0.2.5
+ 0.2.5
+
+
+ beta
+ beta
+
+ 2015-09-23
+ The MIT License (MIT)
+
+- Stop JS execution on PHP exceptions (instead of continuing silently)
+- Allow propagation of PHP exceptions to JS context (disabled by default)
+- Add v8js.compat_php_exceptions php.ini switch to switch previous behaviour back on
+
+
diff --git a/php_v8js_macros.h b/php_v8js_macros.h
index 29f8f25..e2ca5a4 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.2.4"
+#define PHP_V8JS_VERSION "0.2.5"
/* Hidden field name used to link JS wrappers with underlying PHP object */
#define PHPJS_OBJECT_KEY "phpjs::object"