diff --git a/AUTHORS b/AUTHORS index 9c2969a614..509e8be9f7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -261,3 +261,5 @@ Brandon Benvie Nicolas LaCasse Dan VerWeire Matthew Fitzsimmons +Philip Tellis +Christopher Jeffrey diff --git a/ChangeLog b/ChangeLog index 3eb32b16a5..6ef1ef1a1b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,27 @@ -2012.02.07, Version 0.7.3 (unstable) +2012.02.14, Version 0.7.4 (unstable) + +* Upgrade V8 to 3.9.5 + +* Upgrade npm to 1.1.1 + +* build: Detect host_arch better (Karl Skomski) + +* debugger: export `debug_port` to `process` (Fedor Indutny) + +* api docs: CSS bug fixes (isaacs) + +* build: use -fPIC for native addons on UNIX (Nathan Rajlich) + +* Re-add top-level v8::Locker (Marcel Laverdet) + +* Move images out of the dist tarballs (isaacs) + +* libuv: Remove uv_export and uv_import (Ben Noordhuis) + +* build: Support x64 build on Windows (Igor Zinkovsky) + + +2012.02.07, Version 0.7.3 (unstable), 99059aad8d654acda4abcfaa68df182b50f2ec90 * Upgrade V8 to 3.9.2 diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index 6ce121c5c1..d4eaebef8d 100644 --- a/deps/v8/SConstruct +++ b/deps/v8/SConstruct @@ -293,6 +293,7 @@ V8_EXTRA_FLAGS = { 'gcc': { 'all': { 'WARNINGFLAGS': ['-Wall', + '-Werror', '-W', '-Wno-unused-parameter', '-Wnon-virtual-dtor'] @@ -389,7 +390,7 @@ MKSNAPSHOT_EXTRA_FLAGS = { DTOA_EXTRA_FLAGS = { 'gcc': { 'all': { - 'WARNINGFLAGS': ['-Wno-uninitialized'], + 'WARNINGFLAGS': ['-Werror', '-Wno-uninitialized'], 'CCFLAGS': GCC_DTOA_EXTRA_CCFLAGS } }, diff --git a/doc/about/index.html b/doc/about/index.html index 8277bf0559..f2bfb67f51 100644 --- a/doc/about/index.html +++ b/doc/about/index.html @@ -130,7 +130,7 @@ console.log('Server running at http://127.0.0.1:1337/');
  • -

    Copyright 2010 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 833ba2fb69..1fb408a971 100644 --- a/doc/community/index.html +++ b/doc/community/index.html @@ -180,7 +180,7 @@
  • -

    Copyright 2010 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 6b8346aaff..c91d7efd1c 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 4 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)