From: kmillikin@chromium.org Date: Mon, 13 Dec 2010 17:50:29 +0000 (+0000) Subject: Prepare push to trunk. Now working on version 3.0.2. X-Git-Tag: upstream/4.7.83~20815 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3fe2325d6b0bc82d5bb8e63277c99beed6077748;p=platform%2Fupstream%2Fv8.git Prepare push to trunk. Now working on version 3.0.2. Review URL: http://codereview.chromium.org/5763002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5994 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/ChangeLog b/ChangeLog index 91b583f..2debaa0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +2010-12-13: Version 3.0.1 + + Added support for an experimental internationalization API as an + extension. This extension is disabled by default but can be enabled + when building V8. The ECMAScript internationalization strawman is + at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api. + + Made RegExp character class parsing stricter. This mirrors a change + to RegExp parsing in WebKit. + + Fixed a bug in Object.defineProperty when used to change attributes + of an existing property. It incorrectly set the property value to + undefined (issue 965). + + Fixed several different compilation failures on various platforms + caused by the 3.0.0 release. + + Optimized Math.pow so it can work on unboxed doubles. + + Sped up quoting of JSON strings by removing one traversal of the + string. + + 2010-12-07: Version 3.0.0 Improved performance by (partially) addressing issue 957 on @@ -132,7 +155,7 @@ Added USE_SIMULATOR macro that explicitly indicates that we wish to use the simulator as the execution engine (by Mark Lam - from Hewlett-Packard Development Company, LP). + from Hewlett-Packard Development Company, LP). Fixed compilation error on ARM with gcc 4.4 (issue 894). diff --git a/src/version.cc b/src/version.cc index e474e4a..e553fdb 100644 --- a/src/version.cc +++ b/src/version.cc @@ -34,7 +34,7 @@ // cannot be changed without changing the SCons build script. #define MAJOR_VERSION 3 #define MINOR_VERSION 0 -#define BUILD_NUMBER 1 +#define BUILD_NUMBER 2 #define PATCH_LEVEL 0 #define CANDIDATE_VERSION true