diff --git a/ChangeLog b/ChangeLog index fb236c6e8d..99495dd46b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2011-09-15: Version 3.6.4 + + Fixed d8's broken readline history. + + Removed the need for code delete events in CPU profiler (Issue 1466). + + Fixed debugger stepping next with trycatch recursion (Issue 1639). + + Fixing parallel execution in d8 (with -p) and some memory leaks. + + Support for precise stepping in functions compiled before debugging was + started (step 1). + + 2011-09-13: Version 3.6.3 Implemented better support of typed arrays in the d8 shell. diff --git a/src/version.cc b/src/version.cc index f1e1302c65..1e37c01a51 100644 --- a/src/version.cc +++ b/src/version.cc @@ -34,7 +34,7 @@ // cannot be changed without changing the SCons build script. #define MAJOR_VERSION 3 #define MINOR_VERSION 6 -#define BUILD_NUMBER 4 +#define BUILD_NUMBER 5 #define PATCH_LEVEL 0 // Use 1 for candidates and 0 otherwise. // (Boolean macro values are not supported by all preprocessors.)