Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 6645b93

Browse files
committed
2013.07.21, Version 0.11.6 (Unstable)
Changes since version 0.11.5: * test: open stdout fd in write-only mode (Ben Noordhuis) * windows: uv_spawn shouldn't reject reparse points (Bert Belder) * windows: use WSAGetLastError(), not errno (Ben Noordhuis) * build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis) * test: fix signed/unsigned compiler warning (Ben Noordhuis) * test: add 'start timer from check handle' test (Ben Noordhuis) * build: `all` now builds static and dynamic lib (Ben Noordhuis) * unix, windows: add extra fields to uv_stat_t (Saúl Ibarra Corretgé) * build: add install target to the makefile (Navaneeth Kedaram Nambiathan) * build: switch to autotools (Ben Noordhuis) * build: use AM_PROG_AR conditionally (Ben Noordhuis) * test: fix fs_fstat test on sunos (Ben Noordhuis) * test: fix fs_chown when running as root (Ben Noordhuis) * test: fix spawn_setgid_fails and spawn_setuid_fails (Ben Noordhuis) * build: use AM_SILENT_RULES conditionally (Ben Noordhuis) * build: add DTrace detection for autotools (Timothy J. Fontaine) * linux,darwin,win: link-local IPv6 addresses (Miroslav Bajtoš) * unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis) * unix, windows: return error codes directly (Ben Noordhuis)
1 parent 3ee4d3f commit 6645b93

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ Sean Silva <chisophugis@gmail.com>
9090
Wynn Wilkes <wynnw@movenetworks.com>
9191
Linus Mårtensson <linus.martensson@sonymobile.com>
9292
Andrei Sedoi <bsnote@gmail.com>
93+
Navaneeth Kedaram Nambiathan <navaneethkn@gmail.com>

ChangeLog

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,46 @@
1+
2013.07.21, Version 0.11.6 (Unstable)
2+
3+
Changes since version 0.11.5:
4+
5+
* test: open stdout fd in write-only mode (Ben Noordhuis)
6+
7+
* windows: uv_spawn shouldn't reject reparse points (Bert Belder)
8+
9+
* windows: use WSAGetLastError(), not errno (Ben Noordhuis)
10+
11+
* build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis)
12+
13+
* test: fix signed/unsigned compiler warning (Ben Noordhuis)
14+
15+
* test: add 'start timer from check handle' test (Ben Noordhuis)
16+
17+
* build: `all` now builds static and dynamic lib (Ben Noordhuis)
18+
19+
* unix, windows: add extra fields to uv_stat_t (Saúl Ibarra Corretgé)
20+
21+
* build: add install target to the makefile (Navaneeth Kedaram Nambiathan)
22+
23+
* build: switch to autotools (Ben Noordhuis)
24+
25+
* build: use AM_PROG_AR conditionally (Ben Noordhuis)
26+
27+
* test: fix fs_fstat test on sunos (Ben Noordhuis)
28+
29+
* test: fix fs_chown when running as root (Ben Noordhuis)
30+
31+
* test: fix spawn_setgid_fails and spawn_setuid_fails (Ben Noordhuis)
32+
33+
* build: use AM_SILENT_RULES conditionally (Ben Noordhuis)
34+
35+
* build: add DTrace detection for autotools (Timothy J. Fontaine)
36+
37+
* linux,darwin,win: link-local IPv6 addresses (Miroslav Bajtoš)
38+
39+
* unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis)
40+
41+
* unix, windows: return error codes directly (Ben Noordhuis)
42+
43+
144
2013.06.27, Version 0.11.5 (Unstable), e3c63ff1627a14e96f54c1c62b0d68b446d8425b
245

346
Changes since version 0.11.4:

src/version.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#define UV_VERSION_MAJOR 0
3333
#define UV_VERSION_MINOR 11
3434
#define UV_VERSION_PATCH 6
35-
#define UV_VERSION_IS_RELEASE 0
35+
#define UV_VERSION_IS_RELEASE 1
3636

3737

3838
#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \

0 commit comments

Comments
 (0)