2015.06.04, Version 1.6.0 (Stable)
Changes since version 1.5.0: * aix: fix setsockopt for multicast options (Michael) * unix: don't block for io if any io handle is primed (Saúl Ibarra Corretgé) * windows: MSVC 2015 has snprintf() (Rui Abreu Ferreira) * windows: Add VS2015 support to vcbuild.bat (Jason Williams) * doc: fix typo in tcp.rst (Igor Soarez) * linux: work around epoll bug in kernels < 2.6.37 (Ben Noordhuis) * unix,win: add uv_os_homedir() (cjihrig) * stream: fix `select()` race condition (Fedor Indutny) * unix: prevent infinite loop in uv__run_pending (Saúl Ibarra Corretgé) * unix: make sure UDP send callbacks are asynchronous (Saúl Ibarra Corretgé) * test: fix `platform_output` netmask printing. (Andrew Paprocki) * aix: add ahafs autoconf detection and README notes (Andrew Paprocki) * core: add ability to customize memory allocator (Saúl Ibarra Corretgé)
This commit is contained in:
parent
7552305d32
commit
adfccad764
1
.mailmap
1
.mailmap
@ -18,6 +18,7 @@ Leith Bade <leith@leithalweapon.geek.nz> <leith@mapbox.com>
|
|||||||
Leonard Hecker <leonard.hecker91@gmail.com> <leonard@hecker.io>
|
Leonard Hecker <leonard.hecker91@gmail.com> <leonard@hecker.io>
|
||||||
Maciej Małecki <maciej.malecki@notimplemented.org> <me@mmalecki.com>
|
Maciej Małecki <maciej.malecki@notimplemented.org> <me@mmalecki.com>
|
||||||
Marc Schlaich <marc.schlaich@googlemail.com> <marc.schlaich@gmail.com>
|
Marc Schlaich <marc.schlaich@googlemail.com> <marc.schlaich@gmail.com>
|
||||||
|
Michael <michael_dawson@ca.ibm.com>
|
||||||
Rasmus Christian Pedersen <zerhacken@yahoo.com>
|
Rasmus Christian Pedersen <zerhacken@yahoo.com>
|
||||||
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
||||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||||
|
|||||||
3
AUTHORS
3
AUTHORS
@ -197,3 +197,6 @@ Daryl Haresign <github@daryl.haresign.com>
|
|||||||
Rui Abreu Ferreira <raf-ep@gmx.com>
|
Rui Abreu Ferreira <raf-ep@gmx.com>
|
||||||
João Reis <reis@janeasystems.com>
|
João Reis <reis@janeasystems.com>
|
||||||
farblue68 <farblue68@gmail.com>
|
farblue68 <farblue68@gmail.com>
|
||||||
|
Jason Williams <necmon@yahoo.com>
|
||||||
|
Igor Soarez <igorsoarez@gmail.com>
|
||||||
|
Miodrag Milanovic <mmicko@gmail.com>
|
||||||
|
|||||||
31
ChangeLog
31
ChangeLog
@ -1,3 +1,34 @@
|
|||||||
|
2015.06.04, Version 1.6.0 (Stable)
|
||||||
|
|
||||||
|
Changes since version 1.5.0:
|
||||||
|
|
||||||
|
* aix: fix setsockopt for multicast options (Michael)
|
||||||
|
|
||||||
|
* unix: don't block for io if any io handle is primed (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* windows: MSVC 2015 has snprintf() (Rui Abreu Ferreira)
|
||||||
|
|
||||||
|
* windows: Add VS2015 support to vcbuild.bat (Jason Williams)
|
||||||
|
|
||||||
|
* doc: fix typo in tcp.rst (Igor Soarez)
|
||||||
|
|
||||||
|
* linux: work around epoll bug in kernels < 2.6.37 (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix,win: add uv_os_homedir() (cjihrig)
|
||||||
|
|
||||||
|
* stream: fix `select()` race condition (Fedor Indutny)
|
||||||
|
|
||||||
|
* unix: prevent infinite loop in uv__run_pending (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* unix: make sure UDP send callbacks are asynchronous (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* test: fix `platform_output` netmask printing. (Andrew Paprocki)
|
||||||
|
|
||||||
|
* aix: add ahafs autoconf detection and README notes (Andrew Paprocki)
|
||||||
|
|
||||||
|
* core: add ability to customize memory allocator (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
|
||||||
2015.05.07, Version 1.5.0 (Stable), 4e77f74c7b95b639b3397095db1bc5bcc016c203
|
2015.05.07, Version 1.5.0 (Stable), 4e77f74c7b95b639b3397095db1bc5bcc016c203
|
||||||
|
|
||||||
Changes since version 1.4.2:
|
Changes since version 1.4.2:
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_PREREQ(2.57)
|
AC_PREREQ(2.57)
|
||||||
AC_INIT([libuv], [1.5.0], [https://github.com/libuv/libuv/issues])
|
AC_INIT([libuv], [1.6.0], [https://github.com/libuv/libuv/issues])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||||
m4_include([m4/as_case.m4])
|
m4_include([m4/as_case.m4])
|
||||||
|
|||||||
@ -31,7 +31,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define UV_VERSION_MAJOR 1
|
#define UV_VERSION_MAJOR 1
|
||||||
#define UV_VERSION_MINOR 5
|
#define UV_VERSION_MINOR 6
|
||||||
#define UV_VERSION_PATCH 0
|
#define UV_VERSION_PATCH 0
|
||||||
#define UV_VERSION_IS_RELEASE 1
|
#define UV_VERSION_IS_RELEASE 1
|
||||||
#define UV_VERSION_SUFFIX ""
|
#define UV_VERSION_SUFFIX ""
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user