From d47962e9d93d4a55a9984623feaf546406c9cdbb Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Wed, 22 Jan 2014 21:37:34 +0100 Subject: [PATCH] 2014.01.23, Version 0.11.18 (Unstable) Changes since version 0.11.17: * osx: Fix a possible segfault in uv__io_poll (Alex Crichton) * windows: improved handling of invalid FDs (Alexis Campailla) * doc: adding ARCHS flag to OS X build command (Nathan Sweet) * tcp: reveal bind-time errors before listen (Alexis Campailla) * tcp: uv_tcp_dualstack() (Fedor Indutny) * linux: relax assumption on /proc/stat parsing (Luca Bruno) * openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny) * process: close stdio after dup2'ing it (Fedor Indutny) * linux: move sscanf() out of the assert() (Trevor Norris) --- AUTHORS | 2 ++ ChangeLog | 23 +++++++++++++++++++++++ src/version.c | 2 +- 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 822f4fed..6633f065 100644 --- a/AUTHORS +++ b/AUTHORS @@ -110,3 +110,5 @@ Alexis Campailla Yazhong Liu Sam Roberts River Tarnell +Nathan Sweet +Trevor Norris diff --git a/ChangeLog b/ChangeLog index 2175044b..dacd4d65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +2014.01.23, Version 0.11.18 (Unstable) + +Changes since version 0.11.17: + +* osx: Fix a possible segfault in uv__io_poll (Alex Crichton) + +* windows: improved handling of invalid FDs (Alexis Campailla) + +* doc: adding ARCHS flag to OS X build command (Nathan Sweet) + +* tcp: reveal bind-time errors before listen (Alexis Campailla) + +* tcp: uv_tcp_dualstack() (Fedor Indutny) + +* linux: relax assumption on /proc/stat parsing (Luca Bruno) + +* openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny) + +* process: close stdio after dup2'ing it (Fedor Indutny) + +* linux: move sscanf() out of the assert() (Trevor Norris) + + 2014.01.23, Version 0.10.23 (Stable) Changes since version 0.10.22: diff --git a/src/version.c b/src/version.c index ac5cc613..725872b4 100644 --- a/src/version.c +++ b/src/version.c @@ -32,7 +32,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 11 #define UV_VERSION_PATCH 18 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \