From efba01b86f7df0e67a625ae05cef0b9dd4eb424a Mon Sep 17 00:00:00 2001 From: "ager@chromium.org" Date: Tue, 24 Mar 2009 11:07:09 +0000 Subject: [PATCH] Preparing push of version 1.1.2 to trunk. Review URL: http://codereview.chromium.org/42556 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1592 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- ChangeLog | 27 +++++++++++++++++++++++++++ src/api.cc | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d6e36d741..2bd141310 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,30 @@ +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. + + 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 diff --git a/src/api.cc b/src/api.cc index 52e70b06e..317272531 100644 --- a/src/api.cc +++ b/src/api.cc @@ -2273,7 +2273,7 @@ bool v8::V8::Initialize() { const char* v8::V8::GetVersion() { - return "1.1.2 (candidate)"; + return "1.1.3 (candidate)"; } -- 2.34.1