From 66a1567bf55a384408d0fd2372a9e7cd3ce722c5 Mon Sep 17 00:00:00 2001 From: "kasperl@chromium.org" Date: Tue, 28 Oct 2008 08:42:47 +0000 Subject: [PATCH] Get ready for pushing version 0.4.1 to trunk. Review URL: http://codereview.chromium.org/8829 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@617 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 95d3202fb..993d16dcf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2008-10-28: Version 0.4.1 + + Added caching of RegExp data in compilation cache. + + Added Visual Studio project file for d8 shell. + + Fixed function call performance regression introduced in version + 0.4.0 when splitting the global object in two parts (issue 120). + + Fixed issue 131 by checking for empty handles before throwing and + reporting exceptions. + + 2008-10-23: Version 0.4.0 Split the global object into two parts: The state holding global diff --git a/src/api.cc b/src/api.cc index 86d579be5..cdf0ed6d1 100644 --- a/src/api.cc +++ b/src/api.cc @@ -2199,7 +2199,7 @@ bool v8::V8::Initialize() { const char* v8::V8::GetVersion() { - return "0.4.1 (candidate)"; + return "0.4.2 (candidate)"; } -- 2.34.1