diff --git a/AUTHORS b/AUTHORS index f002a883..1d99256c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -91,3 +91,4 @@ Linus MÃ¥rtensson Andrei Sedoi Navaneeth Kedaram Nambiathan Alex Crichton +Brent Cook diff --git a/ChangeLog b/ChangeLog index 8e05a07e..15105f44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +2013.09.05, Version 0.11.13 (Unstable) + +Changes since version 0.11.12: + +* unix: define _GNU_SOURCE, exposes glibc-isms (Ben Noordhuis) + +* windows: check for nonconforming swprintf arguments (Brent Cook) + +* build: include internal headers in source list (Brent Cook) + +* include: merge uv_tcp_bind and uv_tcp_bind6 (Ben Noordhuis) + +* include: merge uv_tcp_connect and uv_tcp_connect6 (Ben Noordhuis) + +* include: merge uv_udp_bind and uv_udp_bind6 (Ben Noordhuis) + +* include: merge uv_udp_send and uv_udp_send6 (Ben Noordhuis) + + 2013.09.03, Version 0.11.12 (Unstable), 82d01d5f6780d178f5176a01425ec297583c0811 Changes since version 0.11.11: diff --git a/configure.ac b/configure.ac index aede49b7..0c977370 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.5], [https://github.com/joyent/libuv/issues]) +AC_INIT([libuv], [0.11.13], [https://github.com/joyent/libuv/issues]) AC_CONFIG_MACRO_DIR([m4]) m4_include([m4/libuv-extra-automake-flags.m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects] UV_EXTRA_AUTOMAKE_FLAGS) diff --git a/src/version.c b/src/version.c index e938a722..e7f56fc6 100644 --- a/src/version.c +++ b/src/version.c @@ -32,7 +32,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 11 #define UV_VERSION_PATCH 13 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \