From d42630dd9b0146e001dbfc058a0d51ac36791547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 9 Dec 2014 20:15:56 +0100 Subject: [PATCH] 2014.12.10, Version 1.0.2 (Stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 1.0.1: * linux: fix sigmask size arg in epoll_pwait() call (Ben Noordhuis) * linux: handle O_NONBLOCK != SOCK_NONBLOCK case (Helge Deller) * doc: fix spelling (Joey Geralnik) * unix, windows: fix typos in comments (Joey Geralnik) * test: canonicalize test runner path (Ben Noordhuis) * test: fix compilation warnings (Saúl Ibarra Corretgé) * test: skip tty test if detected width and height are 0 (Saúl Ibarra Corretgé) * doc: update README with IRC channel (Saúl Ibarra Corretgé) * Revert "unix: use cfmakeraw() for setting raw TTY mode" (Ben Noordhuis) * doc: document how to get result of uv_fs_mkdtemp (Tim Caswell) * unix: add flag for blocking SIGPROF during poll (Ben Noordhuis) * unix, windows: add uv_loop_configure() function (Ben Noordhuis) * win: keep a reference to AFD_POLL_INFO in cancel poll (Marc Schlaich) * test: raise fd limit for OSX select test (Saúl Ibarra Corretgé) * unix: remove overzealous assert in uv_read_stop (Saúl Ibarra Corretgé) * unix: reset the reading flag when a stream gets EOF (Saúl Ibarra Corretgé) * unix: stop reading if an error is produced (Saúl Ibarra Corretgé) * cleanup: remove all dead assignments (Maciej Małecki) * linux: return early if we have no interfaces (Maciej Małecki) * cleanup: remove a dead increment (Maciej Małecki) --- AUTHORS | 5 ++--- ChangeLog | 45 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- include/uv-version.h | 2 +- 4 files changed, 49 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 0f3d25732..d4c18cf53 100644 --- a/AUTHORS +++ b/AUTHORS @@ -86,9 +86,7 @@ Nicholas Vavilov Miroslav Bajtoš Sean Silva Wynn Wilkes -Linus Mårtensson Andrei Sedoi -Navaneeth Kedaram Nambiathan Alex Crichton Brent Cook Brian Kaisner @@ -110,7 +108,6 @@ Yazhong Liu Sam Roberts River Tarnell Nathan Sweet -Luca Bruno Trevor Norris Oguz Bastemur Dylan Cali @@ -174,3 +171,5 @@ Manos Nikolaidis Elijah Andrews Michael Ira Krufky Helge Deller +Joey Geralnik +Tim Caswell diff --git a/ChangeLog b/ChangeLog index 262c3a68a..6860efb79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,48 @@ +2014.12.10, Version 1.0.2 (Stable) + +Changes since version 1.0.1: + +* linux: fix sigmask size arg in epoll_pwait() call (Ben Noordhuis) + +* linux: handle O_NONBLOCK != SOCK_NONBLOCK case (Helge Deller) + +* doc: fix spelling (Joey Geralnik) + +* unix, windows: fix typos in comments (Joey Geralnik) + +* test: canonicalize test runner path (Ben Noordhuis) + +* test: fix compilation warnings (Saúl Ibarra Corretgé) + +* test: skip tty test if detected width and height are 0 (Saúl Ibarra Corretgé) + +* doc: update README with IRC channel (Saúl Ibarra Corretgé) + +* Revert "unix: use cfmakeraw() for setting raw TTY mode" (Ben Noordhuis) + +* doc: document how to get result of uv_fs_mkdtemp (Tim Caswell) + +* unix: add flag for blocking SIGPROF during poll (Ben Noordhuis) + +* unix, windows: add uv_loop_configure() function (Ben Noordhuis) + +* win: keep a reference to AFD_POLL_INFO in cancel poll (Marc Schlaich) + +* test: raise fd limit for OSX select test (Saúl Ibarra Corretgé) + +* unix: remove overzealous assert in uv_read_stop (Saúl Ibarra Corretgé) + +* unix: reset the reading flag when a stream gets EOF (Saúl Ibarra Corretgé) + +* unix: stop reading if an error is produced (Saúl Ibarra Corretgé) + +* cleanup: remove all dead assignments (Maciej Małecki) + +* linux: return early if we have no interfaces (Maciej Małecki) + +* cleanup: remove a dead increment (Maciej Małecki) + + 2014.12.10, Version 0.10.30 (Stable), 5a63f5e9546dca482eeebc3054139b21f509f21f Changes since version 0.10.29: diff --git a/configure.ac b/configure.ac index 247e42bd2..6ae53cc91 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. AC_PREREQ(2.57) -AC_INIT([libuv], [1.0.1], [https://github.com/libuv/libuv/issues]) +AC_INIT([libuv], [1.0.2], [https://github.com/libuv/libuv/issues]) AC_CONFIG_MACRO_DIR([m4]) m4_include([m4/libuv-extra-automake-flags.m4]) m4_include([m4/as_case.m4]) diff --git a/include/uv-version.h b/include/uv-version.h index 889abffca..25c31ab5e 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -32,7 +32,7 @@ #define UV_VERSION_MAJOR 1 #define UV_VERSION_MINOR 0 -#define UV_VERSION_PATCH 1 +#define UV_VERSION_PATCH 2 #define UV_VERSION_IS_RELEASE 1 #define UV_VERSION_SUFFIX ""