2015.01.15, Version 1.2.1 (Stable)
Changes since version 1.2.0:
* unix: remove unused dtrace file (Saúl Ibarra Corretgé)
* test: skip TTY select test if /dev/tty can't be opened (Saúl Ibarra
Corretgé)
* doc: clarify the behavior of uv_tty_init (Saúl Ibarra Corretgé)
* doc: clarify how uv_async_send behaves (Saúl Ibarra Corretgé)
* build: make dist now generates a full tarball (Johan Bergström)
* freebsd: make uv_exepath more resilient (Saúl Ibarra Corretgé)
* unix: make setting the tty mode to the same value a no-op (Saúl Ibarra
Corretgé)
* win,tcp: support uv_try_write (Bert Belder)
* test: enable test-tcp-try-write on windows (Bert Belder)
* win,tty: support uv_try_write (Bert Belder)
* unix: set non-block mode in uv_{pipe,tcp,udp}_open (Ben Noordhuis)
This commit is contained in:
parent
393c1c59a2
commit
4ca78e9890
1
AUTHORS
1
AUTHORS
@ -177,3 +177,4 @@ Logan Rosen <loganrosen@gmail.com>
|
|||||||
Kenneth Perry <thothonegan@gmail.com>
|
Kenneth Perry <thothonegan@gmail.com>
|
||||||
John Marino <marino@FreeBSD.org>
|
John Marino <marino@FreeBSD.org>
|
||||||
Alexey Melnichuk <mimir@newmail.ru>
|
Alexey Melnichuk <mimir@newmail.ru>
|
||||||
|
Johan Bergström <bugs@bergstroem.nu>
|
||||||
|
|||||||
28
ChangeLog
28
ChangeLog
@ -1,3 +1,31 @@
|
|||||||
|
2015.01.15, Version 1.2.1 (Stable)
|
||||||
|
|
||||||
|
Changes since version 1.2.0:
|
||||||
|
|
||||||
|
* unix: remove unused dtrace file (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* test: skip TTY select test if /dev/tty can't be opened (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* doc: clarify the behavior of uv_tty_init (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* doc: clarify how uv_async_send behaves (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* build: make dist now generates a full tarball (Johan Bergström)
|
||||||
|
|
||||||
|
* freebsd: make uv_exepath more resilient (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* unix: make setting the tty mode to the same value a no-op (Saúl Ibarra
|
||||||
|
Corretgé)
|
||||||
|
|
||||||
|
* win,tcp: support uv_try_write (Bert Belder)
|
||||||
|
|
||||||
|
* test: enable test-tcp-try-write on windows (Bert Belder)
|
||||||
|
|
||||||
|
* win,tty: support uv_try_write (Bert Belder)
|
||||||
|
|
||||||
|
* unix: set non-block mode in uv_{pipe,tcp,udp}_open (Ben Noordhuis)
|
||||||
|
|
||||||
|
|
||||||
2015.01.06, Version 1.2.0 (Stable), 09f25b13cd149c7981108fc1a75611daf1277f83
|
2015.01.06, Version 1.2.0 (Stable), 09f25b13cd149c7981108fc1a75611daf1277f83
|
||||||
|
|
||||||
Changes since version 1.1.0:
|
Changes since version 1.1.0:
|
||||||
|
|||||||
@ -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.2.0], [https://github.com/libuv/libuv/issues])
|
AC_INIT([libuv], [1.2.1], [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])
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#define UV_VERSION_MAJOR 1
|
#define UV_VERSION_MAJOR 1
|
||||||
#define UV_VERSION_MINOR 2
|
#define UV_VERSION_MINOR 2
|
||||||
#define UV_VERSION_PATCH 0
|
#define UV_VERSION_PATCH 1
|
||||||
#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