diff --git a/AUTHORS b/AUTHORS index 35a59753..5c34e745 100644 --- a/AUTHORS +++ b/AUTHORS @@ -135,3 +135,5 @@ David Capello Paul Tan Javier Hernández Tonis Tiigi +Norio Kobota +李港平 diff --git a/ChangeLog b/ChangeLog index ea9a936d..e4f9ec02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +2014.04.15, Version 0.11.24 (Unstable) + +Changes since version 0.11.23: + +* linux: reduce file descriptor count of async pipe (Ben Noordhuis) + +* sunos: support IPv6 qualified link-local addresses (Saúl Ibarra Corretgé) + +* windows: fix opening of read-only stdin pipes (Alexis Campailla) + +* windows: Fix an infinite loop in uv_spawn (Alex Crichton) + +* windows: fix console signal handler refcount (李港平) + +* inet: allow scopeid in uv_inet_pton (Fedor Indutny) + +* win: always leave crit section in get_proc_title (Fedor Indutny) + + 2014.04.07, Version 0.11.23 (Unstable) Changes since version 0.11.22: diff --git a/configure.ac b/configure.ac index 40735498..a77252c9 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], [0.11.23], [https://github.com/joyent/libuv/issues]) +AC_INIT([libuv], [0.11.24], [https://github.com/joyent/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 167d4f3a..68705495 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -33,6 +33,6 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 11 #define UV_VERSION_PATCH 24 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #endif /* UV_VERSION_H */