From 765a3804a9c26fd1d473e76ba10a77098021aca9 Mon Sep 17 00:00:00 2001 From: "kasperl@chromium.org" Date: Thu, 12 Mar 2009 07:11:15 +0000 Subject: [PATCH] Prepare push to trunk. Now working on version 1.1.1. Review URL: http://codereview.chromium.org/43123 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@1494 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- ChangeLog | 24 ++++++++++++++++++++++++ src/api.cc | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5d963d0..c9fd144 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,27 @@ +2009-03-12: Version 1.1.0 + + Improved code generation infrastructure by doing simple register + allocation and constant folding and propagation. + + Optimized regular expression matching by avoiding to create + intermediate string arrays and by flattening nested array + representations of RegExp data. + + Traverse a few stack frames when recording profiler samples to + include partial call graphs in the profiling output. + + Added support for using OProfile to profile generated code. + + Added remote debugging support to the D8 developer shell. + + Optimized creation of nested literals like JSON objects. + + Fixed a bug in garbage collecting unused maps and turned it on by + default (--collect-maps). + + Added support for running tests under Valgrind. + + 2009-02-27: Version 1.0.3 Optimized double-to-integer conversions in bit operations by using diff --git a/src/api.cc b/src/api.cc index 804557f..ee1c87b 100644 --- a/src/api.cc +++ b/src/api.cc @@ -2200,7 +2200,7 @@ bool v8::V8::Initialize() { const char* v8::V8::GetVersion() { - return "1.0.4 (candidate)"; + return "1.1.1 (candidate)"; } -- 2.7.4