From 6ce41cb9a0cc3a6fcb4a230c35ebd7160b8e6574 Mon Sep 17 00:00:00 2001
From: isaacs
Date: Wed, 22 Feb 2012 16:48:25 -0800
Subject: [PATCH] 2012.02.23, Version 0.7.5 (unstable)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* 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: support shared V8 properly (T.C. Hollingsworth)
* 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)
---
ChangeLog | 40 +++++++++++++++++++++++++++++++++++++++-
doc/about/index.html | 2 +-
doc/community/index.html | 2 +-
doc/index.html | 18 +++++++++---------
doc/logos/index.html | 2 +-
doc/template.html | 6 +++---
src/node_version.h | 2 +-
7 files changed, 55 insertions(+), 17 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b5306ae9cc37..45b6cad73da9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,42 @@
-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: support shared V8 properly (T.C. Hollingsworth)
+
+* 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 087cd48b80e2..49688c3f10fa 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 1188d7f9b2af..f645d44cb9eb 100644 --- a/doc/community/index.html +++ b/doc/community/index.html @@ -180,7 +180,7 @@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 59a331307697..6adca116a97c 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)