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

Commit

Permalink
Prepare 0.1.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pinepain committed Jul 17, 2017
1 parent 52bdee0 commit 86dc904
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
19 changes: 11 additions & 8 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,24 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2017-06-30</date>
<time>18:55:05</time>
<date>2017-07-17</date>
<time>19:04:05</time>
<version>
<release>0.1.7</release>
<api>0.1.7</api>
<release>0.1.8</release>
<api>0.1.8</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/mit">The MIT License (MIT)</license>
<notes>
Changes to public API and other important changes which may affect end-user:

- Require v8 &gt;= 6.1.170;
- Fix segfaults on unclean shutdown;
This release extends and clarify existent API and does not introduce any BC-breaking changes.

Changes list:

- Change V8\Exception::*Error() return type to V8\ObjectValue as the only possible type;
- Add external exception wiring option to V8\Isolate::ThrowException().
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -227,6 +229,7 @@
<file name="tests/V8Isolate_IsDead.phpt" role="test" />
<file name="tests/V8Isolate_IsInUse.phpt" role="test" />
<file name="tests/V8Isolate_ThrowException.phpt" role="test" />
<file name="tests/V8Isolate_ThrowException_with_external.phpt" role="test" />
<file name="tests/V8Isolate_gc_cyclic_ref_memleak.phpt" role="test" />
<file name="tests/V8Isolate_limit_memory.phpt" role="test" />
<file name="tests/V8Isolate_limit_memory_nested.phpt" role="test" />
Expand Down
4 changes: 2 additions & 2 deletions php_v8.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ extern zend_module_entry php_v8_module_entry;
#endif

#ifndef PHP_V8_VERSION
#define PHP_V8_VERSION "0.2.0"
#define PHP_V8_VERSION "0.1.8"
#endif

#ifndef PHP_V8_REVISION
#define PHP_V8_REVISION "dev"
#define PHP_V8_REVISION "release"
#endif


Expand Down
1 change: 0 additions & 1 deletion scripts/refresh-package-xml.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@
throw new RuntimeException("Unable to get release version");
}
$version = $matches[1];
var_dump($version);

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

0 comments on commit 86dc904

Please sign in to comment.