0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-11-08 18:58:41 +00:00

- Preparing release

This commit is contained in:
Felipe Pena 2012-06-13 02:39:29 +00:00
parent 39ac2f2304
commit 325b54d9d5
2 changed files with 15 additions and 5 deletions

View File

@ -16,13 +16,13 @@ http://pear.php.net/dtd/package-2.0.xsd">
<active>yes</active>
</lead>
<date>2010-12-31</date>
<version><release>0.1.1</release><api>0.1.1</api></version>
<date>2012-06-12</date>
<version><release>0.1.2</release><api>0.1.2</api></version>
<stability><release>beta</release><api>beta</api></stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Fixed crash bug in setting v8.flags ini directive.
- Added notice to registerExtension() if trying to use it when V8 is already initialized.
- Fixed build in PHP 5.4+
- Fixed bug #59553 (can't build due to missing class member)
</notes>
<contents>
@ -53,6 +53,16 @@ http://pear.php.net/dtd/package-2.0.xsd">
<configureoption default="autodetect" name="with-v8js" prompt="Please provide the installation prefix of libv8" />
</extsrcrelease>
<changelog>
<release>
<version><release>0.1.1</release><api>0.1.1</api></version>
<stability><release>beta</release><api>beta</api></stability>
<date>2010-12-31</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Fixed crash bug in setting v8.flags ini directive.
- Added notice to registerExtension() if trying to use it when V8 is already initialized.
</notes>
</release>
<release>
<date>2010-12-30</date>
<version><release>0.1.0</release><api>0.1.0</api></version>

View File

@ -24,7 +24,7 @@
#include <v8.h>
/* V8Js Version */
#define V8JS_VERSION "0.1.1"
#define V8JS_VERSION "0.1.2"
/* Helper macros */
#define V8JS_SYM(v) v8::String::NewSymbol(v, sizeof(v) - 1)