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

Commit a0c388e

Browse files
committed
Prepare 0.1.6 release
1 parent d63cf3d commit a0c388e

File tree

3 files changed

+24
-19
lines changed

3 files changed

+24
-19
lines changed

package.xml

+8-17
Original file line numberDiff line numberDiff line change
@@ -26,32 +26,22 @@
2626
<email>[email protected]</email>
2727
<active>yes</active>
2828
</lead>
29-
<date>2017-04-30</date>
30-
<time>20:34:47</time>
29+
<date>2017-05-03</date>
30+
<time>16:59:56</time>
3131
<version>
32-
<release>0.1.5</release>
33-
<api>0.1.5</api>
32+
<release>0.1.6</release>
33+
<api>0.1.6</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-
This release introduces separate representation for undefined value and fixes some bugs.
42-
Please, see change list below for more details.
43-
44-
* - BC-breaking or potentially BC-breaking changes
45-
4641
Changes to public API and other important changes which may affect end-user:
47-
48-
- * Make V8\Isolate::ThrowException() method void;
49-
- * Remove non-documented V8Isolate::ContextDisposedNotification();
50-
- * Make V8\Value, V8\PrimitiveValue and V8\NameValue abstract;
51-
- V8\Isolate time limit affects js runtime only;
52-
- Introduce separate class for undefined value - V8UndefenedValue;
53-
- Fix V8\Tempalte::Set() to do not accept non-primitive values;
54-
- Remove all private properties from V8\Isolate;
42+
43+
- Enforce `Value()` method on all `V8\Primitive` values;
44+
- Fix segfault when zero args passed to `V8\FunctionObject::NewInstance()`;
5545
</notes>
5646
<contents>
5747
<dir name="/">
@@ -211,6 +201,7 @@
211201
<file name="tests/V8FunctionObject.phpt" role="test" />
212202
<file name="tests/V8FunctionObject_Call.phpt" role="test" />
213203
<file name="tests/V8FunctionObject_Call_bad_args.phpt" role="test" />
204+
<file name="tests/V8FunctionObject_NewInstance.phpt" role="test" />
214205
<file name="tests/V8FunctionObject_constructor_behavior.phpt" role="test" />
215206
<file name="tests/V8FunctionObject_die.phpt" role="test" />
216207
<file name="tests/V8FunctionObject_die_different_isolates.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.6"
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

+14
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,18 @@
105105
$new_package_filename = 'package.xml';
106106
}
107107

108+
// Replace version:
109+
110+
$header = file_get_contents('php_v8.h');
111+
112+
if (!preg_match('/#define PHP_V8_VERSION "(.+)"/', $header, $matches)) {
113+
throw new RuntimeException("Unable to get release version");
114+
}
115+
116+
$version = $matches[1];
117+
118+
$package = preg_replace("/\<release\>\d+\.\d+.\d+.+\<\/release\>/", '<release>' . $version . '</release>', $package);
119+
$package = preg_replace("/\<api\>\d+\.\d+.\d+.+\<\/api\>/", '<api>' . $version . '</api>', $package);
120+
121+
108122
file_put_contents($new_package_filename, $package);

0 commit comments

Comments
 (0)