diff --git a/ChangeLog b/ChangeLog index aeef611b7a..d5c30c7f5e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2009-04-15: Version 1.1.10 + + Fixed crash bug that occurred when loading a const variable in the + presence of eval. + + Allowed using with and eval in registered extensions in debug mode + by fixing bogus assert. + + Fixed the source position for function returns to enable the + debugger to break there. + + 2009-04-14: Version 1.1.9 Made the stack traversal code in the profiler robust by avoiding diff --git a/src/api.cc b/src/api.cc index 9fde657550..a5af3120e6 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.10 (candidate)"; + return "1.1.11 (candidate)"; }