From 08e6b7c31fbef705d7cdb3a7cfe48c37e93c8d8e Mon Sep 17 00:00:00 2001 From: "kasperl@chromium.org" Date: Wed, 17 Sep 2008 13:56:12 +0000 Subject: [PATCH] Update version string and ChangeLog; we're now working on version 0.3.3. Review URL: http://codereview.chromium.org/3101 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@328 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- ChangeLog | 28 ++++++++++++++++++++++++++++ src/api.cc | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 33cfd0b..cbd02ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,31 @@ +2008-09-17: Version 0.3.2 + + Generalized the EvalCache into a CompilationCache and enabled it + for scripts too. The current strategy is to retire all entries + whenever a mark-sweep collection is started. + + Fixed bug where switch statements containing only a default case + would lead to an unbalanced stack (issue 69). + + Fixed bug that made access to the function in a named function + expression impossible in certain situations (issue 24). + + Fixed even more build issues. + + Optimized calling conventions on ARM. The conventions on ARM and + IA-32 now match. + + Removed static initializers for flags and counters. + + Improved inline caching behavior for uncommon cases where lazily + loading Date and RegExp code could force certain code paths go + megamorphic. + + Removed arguments adaption for builtins written in C++. This + makes Array.prototype.push and Array.prototype.pop slightly + faster. + + 2008-09-11: Version 0.3.1 Fixed a number of build issues. diff --git a/src/api.cc b/src/api.cc index e5abfcb..2a3b754 100644 --- a/src/api.cc +++ b/src/api.cc @@ -2216,7 +2216,7 @@ bool v8::V8::Initialize() { const char* v8::V8::GetVersion() { - return "0.3.2 (internal)"; + return "0.3.3 (internal)"; } -- 2.7.4