mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 22:18:41 +00:00
- Preparing release
This commit is contained in:
parent
39ac2f2304
commit
325b54d9d5
18
package.xml
18
package.xml
@ -16,13 +16,13 @@ http://pear.php.net/dtd/package-2.0.xsd">
|
|||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
|
|
||||||
<date>2010-12-31</date>
|
<date>2012-06-12</date>
|
||||||
<version><release>0.1.1</release><api>0.1.1</api></version>
|
<version><release>0.1.2</release><api>0.1.2</api></version>
|
||||||
<stability><release>beta</release><api>beta</api></stability>
|
<stability><release>beta</release><api>beta</api></stability>
|
||||||
<license uri="http://www.php.net/license">PHP</license>
|
<license uri="http://www.php.net/license">PHP</license>
|
||||||
<notes>
|
<notes>
|
||||||
- Fixed crash bug in setting v8.flags ini directive.
|
- Fixed build in PHP 5.4+
|
||||||
- Added notice to registerExtension() if trying to use it when V8 is already initialized.
|
- Fixed bug #59553 (can't build due to missing class member)
|
||||||
</notes>
|
</notes>
|
||||||
|
|
||||||
<contents>
|
<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" />
|
<configureoption default="autodetect" name="with-v8js" prompt="Please provide the installation prefix of libv8" />
|
||||||
</extsrcrelease>
|
</extsrcrelease>
|
||||||
<changelog>
|
<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>
|
<release>
|
||||||
<date>2010-12-30</date>
|
<date>2010-12-30</date>
|
||||||
<version><release>0.1.0</release><api>0.1.0</api></version>
|
<version><release>0.1.0</release><api>0.1.0</api></version>
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include <v8.h>
|
#include <v8.h>
|
||||||
|
|
||||||
/* V8Js Version */
|
/* V8Js Version */
|
||||||
#define V8JS_VERSION "0.1.1"
|
#define V8JS_VERSION "0.1.2"
|
||||||
|
|
||||||
/* Helper macros */
|
/* Helper macros */
|
||||||
#define V8JS_SYM(v) v8::String::NewSymbol(v, sizeof(v) - 1)
|
#define V8JS_SYM(v) v8::String::NewSymbol(v, sizeof(v) - 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user