diff --git a/AUTHORS b/AUTHORS index d1c94ddb0cf..f6199ecfbd2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -59,3 +59,7 @@ Kris Kowal Jacek Becela Rob Ellis Tim-Smart +Herbert Vojčík +Krishna Rajendran +pyrotechnick +Carson McDonald diff --git a/ChangeLog b/ChangeLog index 3532eda34e9..c5dce40bb4d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,15 @@ -2010.03.12, Version 0.1.32 +2010.03.19, Version 0.1.33 + + * Include lib/ directory in node executable. Compile on demand. + + * evalcx clean ups (Isaac Z. Schlueter, Tim-Smart) + + * Various fixes, clean ups + + * V8 upgraded to 2.1.5 + + +2010.03.12, Version 0.1.32, 61c801413544a50000faa7f58376e9b33ba6254f * Optimize event emitter for single listener diff --git a/doc/api.txt b/doc/api.txt index f734e793787..e6d43ecaf5b 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl -Version, 0.1.32, 2010.03.12 +Version, 0.1.33, 2010.03.19 == NAME diff --git a/doc/index.html b/doc/index.html index 431dabbe2ff..e93e036cedb 100644 --- a/doc/index.html +++ b/doc/index.html @@ -96,8 +96,8 @@ server.listen(7000, "localhost"); git repo

- 2010.03.12 - node-v0.1.32.tar.gz + 2010.03.19 + node-v0.1.33.tar.gz

Build

diff --git a/src/node.cc b/src/node.cc index 50fd399885d..3fbc8e29ded 100644 --- a/src/node.cc +++ b/src/node.cc @@ -872,6 +872,8 @@ Handle EvalCX(const Arguments& args) { Local code = args[0]->ToString(); Local sandbox = args.Length() > 1 ? args[1]->ToObject() : Object::New(); + Local filename = args.Length() > 2 ? args[2]->ToString() + : String::New("evalcx"); // Create the new context Persistent context = Context::New(); @@ -891,7 +893,7 @@ Handle EvalCX(const Arguments& args) { // Catch errors TryCatch try_catch; - Local