2015.01.29, Version 1.3.0 (Stable)
Changes since version 1.2.1:
* unix, windows: set non-block mode in uv_poll_init (Saúl Ibarra
Corretgé)
* doc: clarify which flags are supported in uv_fs_event_start (Saúl
Ibarra Corretgé)
* win,unix: move loop functions which have identical implementations
(Andrius Bentkus)
* doc: explain how the threadpool is allocated (Alex Mo)
* doc: clarify uv_default_loop (Saúl Ibarra Corretgé)
* unix: fix implicit declaration compiler warning (Ben Noordhuis)
* unix: fix long line introduced in commit 94e628fa (Ben Noordhuis)
* unix, win: add synchronous uv_get{addr,name}info (Saúl Ibarra
Corretgé)
* linux: fix epoll_pwait() regression with < 2.6.19 (Ben Noordhuis)
* build: compile -D_GNU_SOURCE on linux (Ben Noordhuis)
* build: use -fvisibility=hidden in autotools build (Ben Noordhuis)
* fs, pipe: no trailing terminator in exact sized buffers (Andrius
Bentkus)
* style: rename buf to buffer and len to size for consistency (Andrius
Bentkus)
* test: fix test-spawn on MinGW32 (Luis Martinez de Bartolome)
* win, pipe: fix assertion when destroying timer (Andrius Bentkus)
* win, unix: add pipe_peername implementation (Andrius Bentkus)
This commit is contained in:
parent
a30021de07
commit
165685b2a9
2
AUTHORS
2
AUTHORS
@ -178,3 +178,5 @@ Kenneth Perry <thothonegan@gmail.com>
|
|||||||
John Marino <marino@FreeBSD.org>
|
John Marino <marino@FreeBSD.org>
|
||||||
Alexey Melnichuk <mimir@newmail.ru>
|
Alexey Melnichuk <mimir@newmail.ru>
|
||||||
Johan Bergström <bugs@bergstroem.nu>
|
Johan Bergström <bugs@bergstroem.nu>
|
||||||
|
Alex Mo <almosnow@gmail.com>
|
||||||
|
Luis Martinez de Bartolome <lasote@gmail.com>
|
||||||
|
|||||||
39
ChangeLog
39
ChangeLog
@ -1,3 +1,42 @@
|
|||||||
|
2015.01.29, Version 1.3.0 (Stable)
|
||||||
|
|
||||||
|
Changes since version 1.2.1:
|
||||||
|
|
||||||
|
* unix, windows: set non-block mode in uv_poll_init (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* doc: clarify which flags are supported in uv_fs_event_start (Saúl Ibarra
|
||||||
|
Corretgé)
|
||||||
|
|
||||||
|
* win,unix: move loop functions which have identical implementations (Andrius
|
||||||
|
Bentkus)
|
||||||
|
|
||||||
|
* doc: explain how the threadpool is allocated (Alex Mo)
|
||||||
|
|
||||||
|
* doc: clarify uv_default_loop (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* unix: fix implicit declaration compiler warning (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix: fix long line introduced in commit 94e628fa (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix, win: add synchronous uv_get{addr,name}info (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* linux: fix epoll_pwait() regression with < 2.6.19 (Ben Noordhuis)
|
||||||
|
|
||||||
|
* build: compile -D_GNU_SOURCE on linux (Ben Noordhuis)
|
||||||
|
|
||||||
|
* build: use -fvisibility=hidden in autotools build (Ben Noordhuis)
|
||||||
|
|
||||||
|
* fs, pipe: no trailing terminator in exact sized buffers (Andrius Bentkus)
|
||||||
|
|
||||||
|
* style: rename buf to buffer and len to size for consistency (Andrius Bentkus)
|
||||||
|
|
||||||
|
* test: fix test-spawn on MinGW32 (Luis Martinez de Bartolome)
|
||||||
|
|
||||||
|
* win, pipe: fix assertion when destroying timer (Andrius Bentkus)
|
||||||
|
|
||||||
|
* win, unix: add pipe_peername implementation (Andrius Bentkus)
|
||||||
|
|
||||||
|
|
||||||
2015.01.29, Version 0.10.33 (Stable), 7a2253d33ad8215a26c1b34f1952aee7242dd687
|
2015.01.29, Version 0.10.33 (Stable), 7a2253d33ad8215a26c1b34f1952aee7242dd687
|
||||||
|
|
||||||
Changes since version 0.10.32:
|
Changes since version 0.10.32:
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_PREREQ(2.57)
|
AC_PREREQ(2.57)
|
||||||
AC_INIT([libuv], [1.2.1], [https://github.com/libuv/libuv/issues])
|
AC_INIT([libuv], [1.3.0], [https://github.com/libuv/libuv/issues])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||||
m4_include([m4/as_case.m4])
|
m4_include([m4/as_case.m4])
|
||||||
|
|||||||
@ -31,8 +31,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define UV_VERSION_MAJOR 1
|
#define UV_VERSION_MAJOR 1
|
||||||
#define UV_VERSION_MINOR 2
|
#define UV_VERSION_MINOR 3
|
||||||
#define UV_VERSION_PATCH 1
|
#define UV_VERSION_PATCH 0
|
||||||
#define UV_VERSION_IS_RELEASE 1
|
#define UV_VERSION_IS_RELEASE 1
|
||||||
#define UV_VERSION_SUFFIX ""
|
#define UV_VERSION_SUFFIX ""
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user