Reviewers: Kevin Millikin, Description: Preparing push of version 1.1.2 to trunk.
Please review this at http://codereview.chromium.org/42556 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M ChangeLog M src/api.cc Index: src/api.cc =================================================================== --- src/api.cc (revision 1589) +++ src/api.cc (working copy) @@ -2273,7 +2273,7 @@ const char* v8::V8::GetVersion() { - return "1.1.2 (candidate)"; + return "1.1.3 (candidate)"; } Index: ChangeLog =================================================================== --- ChangeLog (revision 1589) +++ ChangeLog (working copy) @@ -1,3 +1,32 @@ +2009-03-24: Version 1.1.2 + + Improved frame merge code generated by the code generator. + + Optimized String.prototype.replace. + + Implemented __defineGetter__ and __defineSetter__ for properties + with integer keys on non-array objects. + + Improved debugger and profiler support. + + Fixed a number of portability issues to allow compilation for + smaller ARM devices. + + Exposed object cloning through the API. + + Implemented hidden properties. This is used to expose an identity + hash for objects through the API. + + Implemented restarting of regular expressions if their input + string changes representation during preemption. + + Optimized the creation of nested object and array literals. + + Fixed a code generator bug that could cause assignments in loops + to be ignored if using continue to break out of the loop (issue + 284). + + 2009-03-12: Version 1.1.1 Fixed an assertion in the new compiler to take stack overflow --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
