From 383821854bd0bf3d1641c3524037a50088371ba7 Mon Sep 17 00:00:00 2001 From: "kasperl@chromium.org" Date: Tue, 14 Apr 2009 13:29:23 +0000 Subject: [PATCH] Prepare a push to trunk (version 1.1.9). Review URL: http://codereview.chromium.org/73031 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1701 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- ChangeLog | 13 +++++++++++++ src/api.cc | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 888c140e9e..aeef611b7a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2009-04-14: Version 1.1.9 + + Made the stack traversal code in the profiler robust by avoiding + to look into the heap. + + Added name inferencing for anonymous functions to facilitate + debugging and profiling. + + Re-enabled stats timers in the developer shell (d8). + + Fixed issue 303 by avoiding to shortcut cons-symbols. + + 2009-04-11: Version 1.1.8 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96). diff --git a/src/api.cc b/src/api.cc index 72b7d86fef..9fde657550 100644 --- a/src/api.cc +++ b/src/api.cc @@ -2373,7 +2373,7 @@ bool v8::V8::Dispose() { const char* v8::V8::GetVersion() { - return "1.1.9 (candidate)"; + return "1.1.10 (candidate)"; }