From 1b8dd65d6e3b82b6863ef38835cc436c5d30c1d5 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 19 Jul 2011 10:46:40 -0700 Subject: Bump version to v0.4.10 --- AUTHORS | 18 +++++++++++++++++- ChangeLog | 27 +++++++++++++++++++++++++++ doc/index.html | 34 +++++++++++++++------------------- doc/logos/index.html | 16 ---------------- doc/pipe.css | 4 ++++ src/node_version.h | 2 +- wscript | 2 +- 7 files changed, 65 insertions(+), 38 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6378303907b..1eb73d6df88 100644 --- a/AUTHORS +++ b/AUTHORS @@ -172,4 +172,20 @@ Scott McWhirter Jakub Lekstan Tim Baumann Robert Mustacchi - +George Miroshnykov +Marcel Laverdet +Alexandre Marangone +Mark Cavage +Ryan Petrello +Siddharth Mahendraker +Mathias Buus +Yoshihiro KIKUCHI +Brett Kiefer +Mariano Iglesias +Jörn Horstmann +Joe Shaw +Alex Xu +Kip Gebhardt +Stefan Rusu +Wojciech Wnętrzak +Reid Burke diff --git a/ChangeLog b/ChangeLog index 47c408e6028..37102d7c554 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,30 @@ +2011.07.19, Version 0.4.10 (stable) + +* #394 Fix Buffer drops last null character in UTF-8 + +* #829 Backport r8577 from V8 (Ben Noordhuis) + +* #877 Don't wait for HTTP Agent socket pool to establish connections. + +* #915 Find kqueue on FreeBSD correctly (Brett Kiefer) + +* #1085 HTTP: Fix race in abort/dispatch code (Stefan Rusu) + +* #1274 debugger improvement (Yoshihiro Kikuchi) + +* #1291 Properly respond to HEAD during end(body) hot path (Reid Burke) + +* #1304 TLS: Fix race in abort/connection code (Stefan Rusu) + +* #1360 Allow _ in url hostnames. + +* Revert 37d529f8 - unbreaks debugger command parsing. + +* Bring back global execScript + +* Doc improvements + + 2011.06.29, Version 0.4.9 (stable) * Improve documentation diff --git a/doc/index.html b/doc/index.html index ba874daf93a..4e3fc5c7741 100644 --- a/doc/index.html +++ b/doc/index.html @@ -26,8 +26,8 @@
  • Download
  • ChangeLog
  • About
  • -
  • v0.4.9 docs
  • -
  • v0.5.0 docs
  • +
  • v0.4.10 docs
  • +
  • v0.5.1 docs

  • Wiki
  • Blog
  • @@ -110,17 +110,18 @@ server.listen(1337, "127.0.0.1"); git repo

    -

    - 2011.06.29 (stable) - node-v0.4.9.tar.gz - (Documentation) -

    +

    2011.07.19 v0.4.10 (stable) +

    -

    - 2011.07.05 (unstable) - node-v0.5.0.tar.gz - (Documentation) -

    +

    2011.07.14 v0.5.1 (unstable) +

    Historical: versions, docs

    @@ -193,13 +194,8 @@ server.listen(1337, "127.0.0.1"); But what about multiple-processor concurrency? Aren't threads necessary to scale programs to multi-core computers? - Processes are necessary to scale to multi-core computers, not - memory-sharing threads. The fundamentals of scalable systems are - fast networking and non-blocking design—the rest is message - passing. In future versions, Node will be able to fork new - processes (using the Web - Workers API ) which fits well into the current design. + You can start new processes via child_process.fork() + these other processes will be scheduled in parallel.

    diff --git a/doc/logos/index.html b/doc/logos/index.html index 6d8e662e8b9..0d9d2a3f91c 100644 --- a/doc/logos/index.html +++ b/doc/logos/index.html @@ -17,22 +17,6 @@ Node.js Logos -

    -
      -
    1. Download
    2. -
    3. ChangeLog
    4. -
    5. About
    6. -
    7. v0.4.9 docs
    8. -
    9. v0.5.0 docs
    10. -
      -
    11. Wiki
    12. -
    13. Blog
    14. -
    15. Community
    16. -
    17. Demo
    18. -
    19. Logos
    20. -
    21. Jobs
    22. -
    -
    diff --git a/doc/pipe.css b/doc/pipe.css index 3cc2b88c353..4f576e7aeac 100644 --- a/doc/pipe.css +++ b/doc/pipe.css @@ -97,3 +97,7 @@ a:hover { text-decoration: underline; } .desktops { font-size: 14px; } + +.release { + margin: 0 0 0 2em; +} diff --git a/src/node_version.h b/src/node_version.h index 617704bb062..fefdc051cd0 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -28,7 +28,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 4 #define NODE_PATCH_VERSION 10 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) diff --git a/wscript b/wscript index 302ed0f64e6..eab6990c463 100644 --- a/wscript +++ b/wscript @@ -866,7 +866,7 @@ def build(bld): , 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"') , 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"') , 'PREFIX' : safe_path(program.env["PREFIX"]) - , 'VERSION' : '0.4.9' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. + , 'VERSION' : '0.4.10' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version. } return x -- cgit v1.2.3