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)
This commit is contained in:
parent
7d144851b5
commit
d42630dd9b
5
AUTHORS
5
AUTHORS
@ -86,9 +86,7 @@ Nicholas Vavilov <vvnicholas@gmail.com>
|
||||
Miroslav Bajtoš <miro.bajtos@gmail.com>
|
||||
Sean Silva <chisophugis@gmail.com>
|
||||
Wynn Wilkes <wynnw@movenetworks.com>
|
||||
Linus Mårtensson <linus.martensson@sonymobile.com>
|
||||
Andrei Sedoi <bsnote@gmail.com>
|
||||
Navaneeth Kedaram Nambiathan <navaneethkn@gmail.com>
|
||||
Alex Crichton <alex@alexcrichton.com>
|
||||
Brent Cook <brent@boundary.com>
|
||||
Brian Kaisner <bkize1@gmail.com>
|
||||
@ -110,7 +108,6 @@ Yazhong Liu <yorkiefixer@gmail.com>
|
||||
Sam Roberts <vieuxtech@gmail.com>
|
||||
River Tarnell <river@loreley.flyingparchment.org.uk>
|
||||
Nathan Sweet <nathanjsweet@gmail.com>
|
||||
Luca Bruno <lucab@debian.org>
|
||||
Trevor Norris <trev.norris@gmail.com>
|
||||
Oguz Bastemur <obastemur@gmail.com>
|
||||
Dylan Cali <calid1984@gmail.com>
|
||||
@ -174,3 +171,5 @@ Manos Nikolaidis <manos@shadowrobot.com>
|
||||
Elijah Andrews <elijah@busbud.com>
|
||||
Michael Ira Krufky <m.krufky@samsung.com>
|
||||
Helge Deller <deller@gmx.de>
|
||||
Joey Geralnik <jgeralnik@gmail.com>
|
||||
Tim Caswell <tim@creationix.com>
|
||||
|
||||
45
ChangeLog
45
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:
|
||||
|
||||
@ -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])
|
||||
|
||||
@ -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 ""
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user