Update version number. Now working on 0.2.5.
Fixed typo in v8.h. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@62 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
74352a14b7
commit
371ddc7103
35
ChangeLog
35
ChangeLog
@ -1,3 +1,38 @@
|
||||
2008-09-01: Version 0.2.4
|
||||
|
||||
Included mjsunit JavaScript test suite and C++ unit tests.
|
||||
|
||||
Changed the shell sample to not print the result of executing a
|
||||
script provided on the command line.
|
||||
|
||||
Fixed issue when building samples on Windows using a shared V8
|
||||
library. Added visibility option on Linux build which makes the
|
||||
generated library 18% smaller.
|
||||
|
||||
Changed build system to accept multiple build modes in one build
|
||||
and generate separate objects, libraries and executables for each
|
||||
mode.
|
||||
|
||||
Removed deferred negation optimization (a * -b => -(a * b)) since
|
||||
this visibly changes operand conversion order.
|
||||
|
||||
Improved parsing performance by introducing stack guard in
|
||||
preparsing. Without a stack guard preparsing always bails out
|
||||
with stack overflow.
|
||||
|
||||
Changed shell sample to take flags directly from the command-line.
|
||||
Added API call that implements this.
|
||||
|
||||
Added load, quit and version functions to the shell sample so it's
|
||||
easier to run benchmarks and tests.
|
||||
|
||||
Fixed issue with building samples and cctests on 64-bit machines.
|
||||
|
||||
Fixed bug in the runtime system where the prototype chain was not
|
||||
always searched for a setter when setting a property that does not
|
||||
exist locally.
|
||||
|
||||
|
||||
2008-08-14: Version 0.2.3
|
||||
|
||||
Improved performance of garbage collection by moving the
|
||||
|
@ -400,7 +400,7 @@ class EXPORT HandleScope {
|
||||
|
||||
~HandleScope() {
|
||||
// TODO(1245391): In a perfect world, there would be a way of not
|
||||
// having to check for expl icitly closed scopes maybe through
|
||||
// having to check for explicitly closed scopes maybe through
|
||||
// subclassing HandleScope?
|
||||
if (!is_closed_) RestorePreviousState();
|
||||
}
|
||||
|
@ -2103,7 +2103,7 @@ bool v8::V8::Initialize() {
|
||||
|
||||
|
||||
const char* v8::V8::GetVersion() {
|
||||
return "0.2.4 (internal)";
|
||||
return "0.2.5 (internal)";
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user