mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
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)
This commit is contained in:
parent
6760d51b52
commit
e3ea6c1179
1
.mailmap
1
.mailmap
@ -21,6 +21,7 @@ Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
||||
Rasmus Pedersen <ruysch@outlook.com> <zerhacken@yahoo.com>
|
||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||
|
9
AUTHORS
9
AUTHORS
@ -157,3 +157,12 @@ John Firebaugh <john.firebaugh@gmail.com>
|
||||
lilohuang <lilohuang@hotmail.com>
|
||||
Paul Goldsmith <paul.goldsmith@aplink.net>
|
||||
Julien Gilli <julien.gilli@joyent.com>
|
||||
Michael Hudson-Doyle <michael.hudson@linaro.org>
|
||||
Recep ASLANTAS <m@recp.me>
|
||||
Rob Adams <readams@readams.net>
|
||||
Zachary Newman <znewman01@gmail.com>
|
||||
Robin Hahling <robin.hahling@gw-computing.net>
|
||||
Jeff Widman <jeff@jeffwidman.com>
|
||||
cjihrig <cjihrig@gmail.com>
|
||||
Tomasz Kołodziejski <tkolodziejski@mozilla.com>
|
||||
Unknown W. Brackets <checkins@unknownbrackets.org>
|
||||
|
40
ChangeLog
40
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:
|
||||
|
@ -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])
|
||||
|
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user