From 11e6613e6260d95c8cf11bf89a2759c24649319a Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 14 May 2013 14:39:58 -0700 Subject: [PATCH] 2013.05.15, Version 0.10.6 (Stable) Changes since version 0.10.5: * stream: fix osx select hack (Fedor Indutny) * stream: fix small nit in select hack, add test (Fedor Indutny) * build: link with libkvm on openbsd (Ben Noordhuis) * stream: use harder sync restrictions for osx-hack (Fedor Indutny) * unix: fix EMFILE error handling (Ben Noordhuis) * darwin: fix unnecessary include headers (Daisuke Murase) * darwin: rename darwin-getproctitle.m (Ben Noordhuis) * build: convert predefined $PLATFORM to lower case (Elliot Saba) * build: set soname in shared library (Ben Noordhuis) * build: make `make test` link against .a again (Ben Noordhuis) * darwin: fix ios build, don't require ApplicationServices (Ben Noordhuis) * build: only set soname on shared object builds (Timothy J. Fontaine) --- AUTHORS | 1 + ChangeLog | 29 +++++++++++++++++++++++++++++ src/version.c | 2 +- 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index bfffbbba..6f9b605f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -82,3 +82,4 @@ Brian Mazza Nils Maier Nicholas Vavilov Miroslav Bajtoš +Elliot Saba diff --git a/ChangeLog b/ChangeLog index e8ea646d..3f1411d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,32 @@ +2013.05.15, Version 0.10.6 (Stable) + +Changes since version 0.10.5: + +* stream: fix osx select hack (Fedor Indutny) + +* stream: fix small nit in select hack, add test (Fedor Indutny) + +* build: link with libkvm on openbsd (Ben Noordhuis) + +* stream: use harder sync restrictions for osx-hack (Fedor Indutny) + +* unix: fix EMFILE error handling (Ben Noordhuis) + +* darwin: fix unnecessary include headers (Daisuke Murase) + +* darwin: rename darwin-getproctitle.m (Ben Noordhuis) + +* build: convert predefined $PLATFORM to lower case (Elliot Saba) + +* build: set soname in shared library (Ben Noordhuis) + +* build: make `make test` link against .a again (Ben Noordhuis) + +* darwin: fix ios build, don't require ApplicationServices (Ben Noordhuis) + +* build: only set soname on shared object builds (Timothy J. Fontaine) + + 2013.04.24, Version 0.10.5 (Stable), 6595a7732c52eb4f8e57c88655f72997a8567a67 Changes since version 0.10.4: diff --git a/src/version.c b/src/version.c index 5dbc3625..75a5677b 100644 --- a/src/version.c +++ b/src/version.c @@ -35,7 +35,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 10 #define UV_VERSION_PATCH 6 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \