diff --git a/.mailmap b/.mailmap index 560a650018..5dc4075e39 100644 --- a/.mailmap +++ b/.mailmap @@ -2,6 +2,7 @@ Alan Gutierrez Bert Belder Bert Belder Brandon Philips +Brian White Brian White Frank Denis Isaac Z. Schlueter diff --git a/AUTHORS b/AUTHORS index 435f734220..70ee0ea34f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -79,3 +79,5 @@ Tim Bradshaw Timothy J. Fontaine Marc Schlaich Brian Mazza +Nils Maier +Nicholas Vavilov diff --git a/ChangeLog b/ChangeLog index ff267955df..eaa002902f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,38 @@ +2013.04.12, Version 0.10.4 (Stable) + +Changes since version 0.10.3: + +* include: update uv_backend_fd() documentation (Ben Noordhuis) + +* unix: include uv.h in src/version.c (Ben Noordhuis) + +* unix: don't write more than IOV_MAX iovecs (Fedor Indutny) + +* mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier) + +* build: gyp disable thin archives (Timothy J. Fontaine) + +* sunos: re-export entire library when static (Timothy J. Fontaine) + +* unix: dtrace probes for tick-start and tick-stop (Timothy J. Fontaine) + +* windows: fix memory leak in fs__sendfile (Shannen Saez) + +* windows: remove double initialization in uv_tty_init (Shannen Saez) + +* build: fix dtrace-enabled out of tree build (Ben Noordhuis) + +* build: squelch -Wdollar-in-identifier-extension warnings (Ben Noordhuis) + +* inet: snprintf returns int, not size_t (Brian White) + +* win: refactor uv_cpu_info (Bert Belder) + +* build: add support for Visual Studio 2012 (Nicholas Vavilov) + +* build: -Wno-dollar-in-identifier-extension is clang only (Ben Noordhuis) + + 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 8091f96360..3388c71bd4 100644 --- a/src/version.c +++ b/src/version.c @@ -33,7 +33,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 10 #define UV_VERSION_PATCH 4 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \