From 115281a1058c4034d5c5ccedacb667fe3f6327ea Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Fri, 27 Jun 2014 04:40:57 +0400 Subject: [PATCH] 2014.06.28, Version 0.11.26 (Unstable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 0.11.25: * windows: add VT100 codes ?25l and ?25h (JD Ballard) * windows: add invert ANSI (7 / 27) emulation (JD Ballard) * unix: fix handling error on UDP socket creation (Saúl Ibarra Corretgé) * unix, windows: getnameinfo implementation (Rasmus Pedersen) * heap: fix `heap_remove()` (Fedor Indutny) * unix, windows: fix parsing scoped IPv6 addresses (Saúl Ibarra Corretgé) * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra Corretgé) * thread: barrier functions (Ben Noordhuis) * windows: fix PYTHON environment variable usage (Jay Satiro) * unix, windows: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé) * windows: fix handling closed socket while poll handle is closing (Saúl Ibarra Corretgé) * unix: don't run i/o callbacks after prepare callbacks (Saúl Ibarra Corretgé) * windows: add tty unicode support for input (Peter Atashian) * header: introduce `uv_loop_size()` (Andrius Bentkus) * darwin: invoke `mach_timebase_info` only once (Fedor Indutny) --- .mailmap | 1 + AUTHORS | 7 +++++++ ChangeLog | 37 +++++++++++++++++++++++++++++++++++++ include/uv-version.h | 2 +- 4 files changed, 46 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 533e1019..89c1adec 100644 --- a/.mailmap +++ b/.mailmap @@ -15,6 +15,7 @@ Keno Fischer Maciej Małecki Marc Schlaich Rasmus Christian Pedersen +Rasmus Christian Pedersen Rasmus Pedersen Robert Mustacchi Ryan Dahl diff --git a/AUTHORS b/AUTHORS index cb47cee0..e3de5762 100644 --- a/AUTHORS +++ b/AUTHORS @@ -139,3 +139,10 @@ Norio Kobota 李港平 Chernyshev Viacheslav Stephen von Takach +JD Ballard +Luka Perkov +Ryan Cole +HungMingWu +Jay Satiro +Leith Bade +Peter Atashian diff --git a/ChangeLog b/ChangeLog index c60895f3..50d39893 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,40 @@ +2014.06.28, Version 0.11.26 (Unstable) + +Changes since version 0.11.25: + +* windows: add VT100 codes ?25l and ?25h (JD Ballard) + +* windows: add invert ANSI (7 / 27) emulation (JD Ballard) + +* unix: fix handling error on UDP socket creation (Saúl Ibarra Corretgé) + +* unix, windows: getnameinfo implementation (Rasmus Pedersen) + +* heap: fix `heap_remove()` (Fedor Indutny) + +* unix, windows: fix parsing scoped IPv6 addresses (Saúl Ibarra Corretgé) + +* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra + Corretgé) + +* thread: barrier functions (Ben Noordhuis) + +* windows: fix PYTHON environment variable usage (Jay Satiro) + +* unix, windows: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé) + +* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra + Corretgé) + +* unix: don't run i/o callbacks after prepare callbacks (Saúl Ibarra Corretgé) + +* windows: add tty unicode support for input (Peter Atashian) + +* header: introduce `uv_loop_size()` (Andrius Bentkus) + +* darwin: invoke `mach_timebase_info` only once (Fedor Indutny) + + 2014.05.02, Version 0.11.25 (Unstable), 2acd544cff7142e06aa3b09ec64b4a33dd9ab996 Changes since version 0.11.24: diff --git a/include/uv-version.h b/include/uv-version.h index 607eb023..6f8e080a 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -33,6 +33,6 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 11 #define UV_VERSION_PATCH 26 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #endif /* UV_VERSION_H */