diff --git a/.mailmap b/.mailmap index 34f5e4da..b4a7a8b3 100644 --- a/.mailmap +++ b/.mailmap @@ -21,6 +21,7 @@ Rasmus Christian Pedersen Rasmus Christian Pedersen Rasmus Christian Pedersen Rasmus Christian Pedersen +Rasmus Christian Pedersen Rasmus Christian Pedersen Rasmus Pedersen Robert Mustacchi diff --git a/AUTHORS b/AUTHORS index 210fa561..6dae58e0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -157,3 +157,12 @@ John Firebaugh lilohuang Paul Goldsmith Julien Gilli +Michael Hudson-Doyle +Recep ASLANTAS +Rob Adams +Zachary Newman +Robin Hahling +Jeff Widman +cjihrig +Tomasz Kołodziejski +Unknown W. Brackets diff --git a/ChangeLog b/ChangeLog index da2ee386..c06c7820 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,43 @@ +2014.10.21, Version 1.0.0-rc2 (Pre-release) + +Changes since version 1.0.0-rc1: + +* build: add missing fixtures to distribution tarball (Rob Adams) + +* doc: update references to current stable branch (Zachary Newman) + +* fs: fix readdir on empty directory (Fedor Indutny) + +* fs: rename uv_fs_readdir to uv_fs_scandir (Saúl Ibarra Corretgé) + +* doc: document uv_alloc_cb (Saúl Ibarra Corretgé) + +* doc: add migration guide from version 0.10 (Saúl Ibarra Corretgé) + +* build: add DragonFly BSD support in autotools (Robin Hahling) + +* doc: document missing stream related structures (Saúl Ibarra Corretgé) + +* doc: clarify uv_loop_t.data field lifetime (Saúl Ibarra Corretgé) + +* doc: add documentation for missing functions and structures (Saúl Ibarra + Corretgé) + +* doc: fix punctuation and grammar in README (Jeff Widman) + +* windows: return libuv error codes in uv_poll_init() (cjihrig) + +* unix, windows: add uv_fs_access() (cjihrig) + +* windows: fix netmask detection (Alexis Campailla) + +* unix, windows: don't include null byte in uv_cwd size (Saúl Ibarra Corretgé) + +* unix, windows: add uv_thread_equal (Tomasz Kołodziejski) + +* windows: fix fs_write with nbufs > 1 and offset (Unknown W. Brackets) + + 2014.09.18, Version 1.0.0-rc1 (Unstable), 0c28bbf7b42882853d1799ab96ff68b07f7f8d49 Changes since version 0.11.29: diff --git a/configure.ac b/configure.ac index 48579584..c6a30e16 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], [1.0.0], [https://github.com/joyent/libuv/issues]) +AC_INIT([libuv], [1.0.0-rc2], [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 cdbb5534..2ae3ca70 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -33,7 +33,7 @@ #define UV_VERSION_MAJOR 1 #define UV_VERSION_MINOR 0 #define UV_VERSION_PATCH 0 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION_SUFFIX "rc2" #endif /* UV_VERSION_H */