diff --git a/AUTHORS b/AUTHORS index 435f7342..32793e19 100644 --- a/AUTHORS +++ b/AUTHORS @@ -79,3 +79,8 @@ Tim Bradshaw Timothy J. Fontaine Marc Schlaich Brian Mazza +Elliot Saba +Ben Kelly +Kristian Evensen +Nils Maier +Nicholas Vavilov diff --git a/ChangeLog b/ChangeLog index ff267955..99798d76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,41 @@ +2013.04.11, Version 0.11.1 (Unstable) + +This is the first versioned release from the current unstable libuv branch. + +Changes since Node.js v0.11.0: + +* all platforms: nanosecond resolution support for uv_fs_[fl]stat (Timothy J. + Fontaine) + +* all platforms: add netmask to uv_interface_address (Ben Kelly) + +* unix: make sure the `status` parameter passed to the `uv_getaddrinfo` is 0 or + -1 (Ben Noordhuis) + +* unix: limit the number of iovecs written in a single `writev` syscall to + IOV_MAX (Fedor Indutny) + +* unix: add dtrace probes for tick-start and tick-stop (Timothy J. Fontaine) + +* mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier) + +* windows: fix memory leak in fs__sendfile (Shannen Saez) + +* windows: fix edge case bugs in uv_cpu_info (Bert Belder) + +* include: no longer ship with / include ngx-queue.h (Ben Noordhuis) + +* include: remove UV_VERSION_* macros from uv.h (Ben Noordhuis) + +* documentation updates (Kristian Evensen, Ben Kelly, Ben Noordhuis) + +* build: fix dtrace-enabled builds (Ben Noordhuis, Timothy J. Fontaine) + +* build: gyp disable thin archives (Timothy J. Fontaine) + +* build: add support for Visual Studio 2012 (Nicholas Vavilov) + + 2013.02.04, Version 0.10.3 (Stable) Changes since version 0.10.2: diff --git a/src/version.c b/src/version.c index 441d7bc5..b4133324 100644 --- a/src/version.c +++ b/src/version.c @@ -30,7 +30,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 11 #define UV_VERSION_PATCH 1 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \