Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit 86dc904

Browse files
committed
Prepare 0.1.8 release
1 parent 52bdee0 commit 86dc904

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

package.xml

+11-8
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,24 @@
2626
<email>[email protected]</email>
2727
<active>yes</active>
2828
</lead>
29-
<date>2017-06-30</date>
30-
<time>18:55:05</time>
29+
<date>2017-07-17</date>
30+
<time>19:04:05</time>
3131
<version>
32-
<release>0.1.7</release>
33-
<api>0.1.7</api>
32+
<release>0.1.8</release>
33+
<api>0.1.8</api>
3434
</version>
3535
<stability>
3636
<release>stable</release>
3737
<api>stable</api>
3838
</stability>
3939
<license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
4040
<notes>
41-
Changes to public API and other important changes which may affect end-user:
42-
43-
- Require v8 &gt;= 6.1.170;
44-
- Fix segfaults on unclean shutdown;
41+
This release extends and clarify existent API and does not introduce any BC-breaking changes.
42+
43+
Changes list:
44+
45+
- Change V8\Exception::*Error() return type to V8\ObjectValue as the only possible type;
46+
- Add external exception wiring option to V8\Isolate::ThrowException().
4547
</notes>
4648
<contents>
4749
<dir name="/">
@@ -227,6 +229,7 @@
227229
<file name="tests/V8Isolate_IsDead.phpt" role="test" />
228230
<file name="tests/V8Isolate_IsInUse.phpt" role="test" />
229231
<file name="tests/V8Isolate_ThrowException.phpt" role="test" />
232+
<file name="tests/V8Isolate_ThrowException_with_external.phpt" role="test" />
230233
<file name="tests/V8Isolate_gc_cyclic_ref_memleak.phpt" role="test" />
231234
<file name="tests/V8Isolate_limit_memory.phpt" role="test" />
232235
<file name="tests/V8Isolate_limit_memory_nested.phpt" role="test" />

php_v8.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ extern zend_module_entry php_v8_module_entry;
3636
#endif
3737

3838
#ifndef PHP_V8_VERSION
39-
#define PHP_V8_VERSION "0.2.0"
39+
#define PHP_V8_VERSION "0.1.8"
4040
#endif
4141

4242
#ifndef PHP_V8_REVISION
43-
#define PHP_V8_REVISION "dev"
43+
#define PHP_V8_REVISION "release"
4444
#endif
4545

4646

scripts/refresh-package-xml.php

-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@
113113
throw new RuntimeException("Unable to get release version");
114114
}
115115
$version = $matches[1];
116-
var_dump($version);
117116

118117
$package = preg_replace("/\<release\>\d+\.\d+.\d+\<\/release\>/", '<release>' . $version . '</release>', $package);
119118
$package = preg_replace("/\<api\>\d+\.\d+.\d+\<\/api\>/", '<api>' . $version . '</api>', $package);

0 commit comments

Comments
 (0)