Preparing push of version 1.1.2 to trunk.
authorager@chromium.org <ager@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 24 Mar 2009 11:07:09 +0000 (11:07 +0000)
committerager@chromium.org <ager@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Tue, 24 Mar 2009 11:07:09 +0000 (11:07 +0000)
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
src/api.cc

index d6e36d741c427b10392b134b21ce6b1473b539ab..2bd14131060b41043717aee643ca136e0d5fe1d6 100644 (file)
--- 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
index 52e70b06e60e9b62204cad412477b4dfa36825c0..317272531c493b6799926169b4ffd1fd1815a473 100644 (file)
@@ -2273,7 +2273,7 @@ bool v8::V8::Initialize() {
 
 
 const char* v8::V8::GetVersion() {
-  return "1.1.2 (candidate)";
+  return "1.1.3 (candidate)";
 }