Revision: 2536 Author: [email protected] Date: Mon Jul 27 01:27:28 2009 Log: Prepare to push version 1.3.0 to trunk. Review URL: http://codereview.chromium.org/160157 http://code.google.com/p/v8/source/detail?r=2536
Modified: /branches/bleeding_edge/ChangeLog /branches/bleeding_edge/src/version.cc ======================================= --- /branches/bleeding_edge/ChangeLog Mon Jul 13 06:49:57 2009 +++ /branches/bleeding_edge/ChangeLog Mon Jul 27 01:27:28 2009 @@ -1,3 +1,28 @@ +2009-07-27: Version 1.3.0 + + Allowed RegExp objects to be called as functions (issue 132). + + Fixed issue where global property cells would escape after + detaching the global object; see http://crbug.com/16276. + + Added support for stepping into setters and getters in the + debugger. + + Changed the debugger to avoid stopping in its own JavaScript code + and in the code of built-in functions. + + Fixed issue 345 by avoiding duplicate escaping labels. + + Fixed ARM code generator crash in short-circuited boolean + expressions and added regression tests. + + Added an external allocation limit to avoid issues where small V8 + objects would hold on to large amounts of external memory without + causing garbage collections. + + Finished more of the inline caching stubs for x64 targets. + + 2009-07-13: Version 1.2.14 Added separate paged heap space for global property cells and ======================================= --- /branches/bleeding_edge/src/version.cc Mon Jul 13 06:49:57 2009 +++ /branches/bleeding_edge/src/version.cc Mon Jul 27 01:27:28 2009 @@ -34,7 +34,7 @@ // cannot be changed without changing the SCons build script. #define MAJOR_VERSION 1 #define MINOR_VERSION 3 -#define BUILD_NUMBER 0 +#define BUILD_NUMBER 1 #define PATCH_LEVEL 0 #define CANDIDATE_VERSION true --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
