From 4ce82a17d0d8f26d66b4b590032ed1cd80355407 Mon Sep 17 00:00:00 2001 From: "iposva@chromium.org" Date: Tue, 10 Feb 2009 00:31:58 +0000 Subject: [PATCH] Prepare push to trunk. Now working on version 1.0.1. Review URL: http://codereview.chromium.org/21194 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1242 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- ChangeLog | 17 +++++++++++++++++ src/api.cc | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index cea2d03..229d3c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +2009-02-09: Version 1.0.0 + + Fixed crash-bug in the code generation for case independent 16 bit + backreferences. + + Made shells more robust in the presence of string conversion + failures (issue 224). + + Fixed a potential infinite loop when attempting to resolve + eval (issue 221). + + Miscellaneous fixes to the new regular expression engine. + + Reduced binary by stripping unneeded text from JavaScript library and + minifying some JavaScript files. + + 2009-01-27: Version 0.4.9 Enabled new regular expression engine. diff --git a/src/api.cc b/src/api.cc index be0e7b6..b12d189 100644 --- a/src/api.cc +++ b/src/api.cc @@ -2184,7 +2184,7 @@ bool v8::V8::Initialize() { const char* v8::V8::GetVersion() { - return "1.0.0 (candidate)"; + return "1.0.1 (candidate)"; } -- 2.7.4