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)
This commit is contained in:
parent
d4c1228d15
commit
115281a105
1
.mailmap
1
.mailmap
@ -15,6 +15,7 @@ Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu>
|
||||
Maciej Małecki <maciej.malecki@notimplemented.org> <me@mmalecki.com>
|
||||
Marc Schlaich <marc.schlaich@googlemail.com> <marc.schlaich@gmail.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
||||
Rasmus Pedersen <ruysch@outlook.com> <zerhacken@yahoo.com>
|
||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
|
||||
|
||||
7
AUTHORS
7
AUTHORS
@ -139,3 +139,10 @@ Norio Kobota <nori.0428@gmail.com>
|
||||
李港平 <chopdown@gmail.com>
|
||||
Chernyshev Viacheslav <astellar@ro.ru>
|
||||
Stephen von Takach <steve@advancedcontrol.com.au>
|
||||
JD Ballard <jd@pixelandline.com>
|
||||
Luka Perkov <luka.perkov@sartura.hr>
|
||||
Ryan Cole <ryan@rycole.com>
|
||||
HungMingWu <u9089000@gmail.com>
|
||||
Jay Satiro <raysatiro@yahoo.com>
|
||||
Leith Bade <leith@leithalweapon.geek.nz>
|
||||
Peter Atashian <retep998@gmail.com>
|
||||
|
||||
37
ChangeLog
37
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:
|
||||
|
||||
@ -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 */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user