diff --git a/ChangeLog b/ChangeLog index b5306ae9cc37c2..0fd5b6e0fd5b21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,40 @@ -2012.02.14, Version 0.7.4 (unstable) +2012.02.23, Version 0.7.5 (unstable) + +* startup speed improvements (Maciej MaƂecki) + +* crypto: add function getDiffieHellman() (Tomasz Buchert) + +* buffer: support decoding of URL-safe base64 (Ben Noordhuis) + +* Make QueryString.parse() even faster (Brian White) + +* url: decode url entities in auth section (Ben Noordhuis) + +* http: support PURGE request method (Ben Noordhuis) + +* http: Generate Date headers on responses (Mark Nottingham) + +* Fix #2762: Add callback to close function. (Mikeal Rogers) + +* dgram: fix out-of-bound memory read (Ben Noordhuis) + +* repl: add automatic loading of built-in libs (Brandon Benvie) + +* repl: remove double calls where possible (Fedor Indutny) + +* Readline improvements. Related: #2737 #2756 (Colton Baker) + +* build: disable -fomit-frame-pointer on solaris (Dave Pacheco) + +* build: arch detection improvements (Nathan Rajlich) + +* build: Make a fat binary for the OS X `make pkg`. (Nathan Rajlich) + +* jslint src/ and lib/ on 'make test' (isaacs) + + + +2012.02.14, Version 0.7.4 (unstable), de21de920cf93ec40736ada3792a7f85f3eadeda * Upgrade V8 to 3.9.5 diff --git a/doc/about/index.html b/doc/about/index.html index 087cd48b80e2df..49688c3f10fa8c 100644 --- a/doc/about/index.html +++ b/doc/about/index.html @@ -130,7 +130,7 @@

Node's goal is to provide an easy way to build scalable
  • -

    Copyright 2012 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    +

    Copyright 2012 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    diff --git a/doc/community/index.html b/doc/community/index.html index 1188d7f9b2af8e..f645d44cb9eb6a 100644 --- a/doc/community/index.html +++ b/doc/community/index.html @@ -180,7 +180,7 @@

    IRC

  • @nodejs
  • -

    Copyright 2012 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    +

    Copyright 2012 Joyent, Inc, Node.js is a trademark of Joyent, Inc. View license.

    diff --git a/src/node_version.h b/src/node_version.h index 59a3313076973c..6adca116a97c2e 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 7 #define NODE_PATCH_VERSION 5 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)