Skip to content

Commit 8c623e3

Browse files
committed
Bump version to 0.2.6
1 parent 193c1c1 commit 8c623e3

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

package.xml

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,19 @@
1616
<email>[email protected]</email>
1717
<active>yes</active>
1818
</lead>
19-
<date>2015-09-23</date>
20-
<time>20:10:37</time>
19+
<date>2015-09-26</date>
20+
<time>12:31:47</time>
2121
<version>
22-
<release>0.2.5</release>
23-
<api>0.2.5</api>
22+
<release>0.2.6</release>
23+
<api>0.2.6</api>
2424
</version>
2525
<stability>
2626
<release>beta</release>
2727
<api>beta</api>
2828
</stability>
2929
<license uri="http://www.php.net/license">The MIT License (MIT)</license>
3030
<notes>
31-
- Stop JS execution on PHP exceptions (instead of continuing silently)
32-
- Allow propagation of PHP exceptions to JS context (disabled by default)
33-
- Add v8js.compat_php_exceptions php.ini switch to switch previous behaviour back on
31+
- Fix reference counting issue on PHP-&gt;JS-&gt;PHP exception propagation
3432
</notes>
3533
<contents>
3634
<dir baseinstalldir="/" name="/">
@@ -180,7 +178,7 @@
180178
<file baseinstalldir="/" md5sum="25260e0bc3111b01f700fad13544d6a9" name="Makefile.frag" role="src" />
181179
<file baseinstalldir="/" md5sum="31e331386def7ce98943694151c0d5cb" name="Makefile.travis" role="src" />
182180
<file baseinstalldir="/" md5sum="0e23fa6446e52a3b1cff8b18a6e0bd79" name="php_v8js.h" role="src" />
183-
<file baseinstalldir="/" md5sum="9bc8c88f1ef9b37af5c57f7d3bf52695" name="php_v8js_macros.h" role="src" />
181+
<file baseinstalldir="/" md5sum="0d986531818b0e31633f2db3a242afb7" name="php_v8js_macros.h" role="src" />
184182
<file baseinstalldir="/" md5sum="ec19e63ca9310bfc4dc4dbd357c779ae" name="README.Linux.md" role="doc" />
185183
<file baseinstalldir="/" md5sum="4a65a3f9995d325a2c2ccb23224ea503" name="README.MacOS.md" role="doc" />
186184
<file baseinstalldir="/" md5sum="177459a9628e3c8c31b305f20c970f8d" name="README.md" role="doc" />
@@ -197,7 +195,7 @@
197195
<file baseinstalldir="/" md5sum="c061344705c42fb705bffb2959fc1001" name="v8js_convert.cc" role="src" />
198196
<file baseinstalldir="/" md5sum="ede2cf80141b1831c7e7ab50dc57236f" name="v8js_debug.cc" role="src" />
199197
<file baseinstalldir="/" md5sum="cbdb6ed29c9ece278aa2aeab75dbe61f" name="v8js_debug.h" role="src" />
200-
<file baseinstalldir="/" md5sum="60303b08103f35ed8b9df1a2ab8b4f2b" name="v8js_exceptions.cc" role="src" />
198+
<file baseinstalldir="/" md5sum="40b66c44650a8127618c7fc48bf4b0b2" name="v8js_exceptions.cc" role="src" />
201199
<file baseinstalldir="/" md5sum="9d13bf5f413c2d76664670e847e1a801" name="v8js_exceptions.h" role="src" />
202200
<file baseinstalldir="/" md5sum="9f3ad8c136cdc3ebc2bdf993491f9ad8" name="v8js_methods.cc" role="src" />
203201
<file baseinstalldir="/" md5sum="d688b8eb822736d49f7282d22546d6bc" name="v8js_object_export.cc" role="src" />
@@ -414,5 +412,20 @@
414412
- Add v8js.compat_php_exceptions php.ini switch to switch previous behaviour back on
415413
</notes>
416414
</release>
415+
<release>
416+
<version>
417+
<release>0.2.6</release>
418+
<api>0.2.6</api>
419+
</version>
420+
<stability>
421+
<release>beta</release>
422+
<api>beta</api>
423+
</stability>
424+
<date>2015-09-26</date>
425+
<license uri="http://www.php.net/license">The MIT License (MIT)</license>
426+
<notes>
427+
- Fix reference counting issue on PHP-&gt;JS-&gt;PHP exception propagation
428+
</notes>
429+
</release>
417430
</changelog>
418431
</package>

php_v8js_macros.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ extern "C" {
5353
#endif
5454

5555
/* V8Js Version */
56-
#define PHP_V8JS_VERSION "0.2.5"
56+
#define PHP_V8JS_VERSION "0.2.6"
5757

5858
/* Hidden field name used to link JS wrappers with underlying PHP object */
5959
#define PHPJS_OBJECT_KEY "phpjs::object"

0 commit comments

Comments
 (0)