Skip to content

Commit 1ab9ea3

Browse files
committed
2020.05.18, Version 1.38.0 (Stable)
Changes since version 1.37.0: * test: skip poll_duplex and poll_unidirectional on PASE (Xu Meng) * linux: make cpu_times consistently be milliseconds (James Ross) * win: DRY uv_poll_start() and uv_poll_stop() (Ben Noordhuis) * win: DRY uv_poll_close() (Ben Noordhuis) * unix,win: add uv_library_shutdown() (Ben Noordhuis) * unix: yield cpu when spinlocking on async handle (Ben Noordhuis) * win: remove dep on GetQueuedCompletionStatusEx (Colin Finck) * doc: correct source lines (Shohei YOSHIDA) * build,android: fix typo (twosee) * doc: uv_cancel() handles uv_random_t requests (Philip Chimento) * doc: fix unescaped character (Philip Chimento) * build,cmake: fix compilation on old MinGW (erw7) * build: remove unnessesary MSVC warnings (Bartosz Sosnowski) * win: make uv_udp_init_ex() accept UV_UDP_RECVMMSG (Ben Noordhuis) * unix: simplify uv__udp_init_ex() (Ben Noordhuis) * win: remove MAX_PATH limitations (Bartosz Sosnowski) * build, win: add long path aware manifest (Bartosz Sosnowski) * doc: check/idle/prepare functions always succeed (Ben Noordhuis) * darwin: fix build with non-apple compilers (Ben Noordhuis) * win: support environment variables > 32767 chars (Ben Noordhuis) * unix: fully initialize struct msghdr (Ben Noordhuis) * doc: add uv_replace_allocator thread safety warning (twosee) * unix: fix int overflow when copying large files (Michal Artazov) * fs: report original error (Bartosz Sosnowski) * win, fs: add IO_REPARSE_TAG_APPEXECLINK support (Bartosz Sosnowski) * doc: fix formatting (Ben Noordhuis) * unix: fix memory leak when uv_loop_init() fails (Anna Henningsen) * unix: shrink uv_udp_set_source_membership() stack (Ben Noordhuis) * unix,win: fix wrong sizeof argument to memcpy() (Ben Noordhuis) * build: check for libraries not provided by libc (Jeroen Roovers) * doc: fix the order of arguments to calloc() (MasterDuke17) * unix: don't abort when getrlimit() fails (Ben Noordhuis) * test: support common user profile on IBMi (Xu Meng) * build: test on more platforms via QEMU in CI (gengjiawen)
1 parent 1c97611 commit 1ab9ea3

File tree

4 files changed

+85
-5
lines changed

4 files changed

+85
-5
lines changed

Diff for: AUTHORS

+7
Original file line numberDiff line numberDiff line change
@@ -425,3 +425,10 @@ Sk Sajidul Kadir <[email protected]>
425425
426426
Rikard Falkeborn <[email protected]>
427427
Yash Ladha <[email protected]>
428+
James Ross <[email protected]>
429+
Colin Finck <[email protected]>
430+
Shohei YOSHIDA <[email protected]>
431+
Philip Chimento <[email protected]>
432+
Michal Artazov <[email protected]>
433+
Jeroen Roovers <[email protected]>
434+
MasterDuke17 <[email protected]>

Diff for: ChangeLog

+73
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,76 @@
1+
2020.05.18, Version 1.38.0 (Stable)
2+
3+
Changes since version 1.37.0:
4+
5+
* test: skip poll_duplex and poll_unidirectional on PASE (Xu Meng)
6+
7+
* linux: make cpu_times consistently be milliseconds (James Ross)
8+
9+
* win: DRY uv_poll_start() and uv_poll_stop() (Ben Noordhuis)
10+
11+
* win: DRY uv_poll_close() (Ben Noordhuis)
12+
13+
* unix,win: add uv_library_shutdown() (Ben Noordhuis)
14+
15+
* unix: yield cpu when spinlocking on async handle (Ben Noordhuis)
16+
17+
* win: remove dep on GetQueuedCompletionStatusEx (Colin Finck)
18+
19+
* doc: correct source lines (Shohei YOSHIDA)
20+
21+
* build,android: fix typo (twosee)
22+
23+
* doc: uv_cancel() handles uv_random_t requests (Philip Chimento)
24+
25+
* doc: fix unescaped character (Philip Chimento)
26+
27+
* build,cmake: fix compilation on old MinGW (erw7)
28+
29+
* build: remove unnessesary MSVC warnings (Bartosz Sosnowski)
30+
31+
* win: make uv_udp_init_ex() accept UV_UDP_RECVMMSG (Ben Noordhuis)
32+
33+
* unix: simplify uv__udp_init_ex() (Ben Noordhuis)
34+
35+
* win: remove MAX_PATH limitations (Bartosz Sosnowski)
36+
37+
* build, win: add long path aware manifest (Bartosz Sosnowski)
38+
39+
* doc: check/idle/prepare functions always succeed (Ben Noordhuis)
40+
41+
* darwin: fix build with non-apple compilers (Ben Noordhuis)
42+
43+
* win: support environment variables > 32767 chars (Ben Noordhuis)
44+
45+
* unix: fully initialize struct msghdr (Ben Noordhuis)
46+
47+
* doc: add uv_replace_allocator thread safety warning (twosee)
48+
49+
* unix: fix int overflow when copying large files (Michal Artazov)
50+
51+
* fs: report original error (Bartosz Sosnowski)
52+
53+
* win, fs: add IO_REPARSE_TAG_APPEXECLINK support (Bartosz Sosnowski)
54+
55+
* doc: fix formatting (Ben Noordhuis)
56+
57+
* unix: fix memory leak when uv_loop_init() fails (Anna Henningsen)
58+
59+
* unix: shrink uv_udp_set_source_membership() stack (Ben Noordhuis)
60+
61+
* unix,win: fix wrong sizeof argument to memcpy() (Ben Noordhuis)
62+
63+
* build: check for libraries not provided by libc (Jeroen Roovers)
64+
65+
* doc: fix the order of arguments to calloc() (MasterDuke17)
66+
67+
* unix: don't abort when getrlimit() fails (Ben Noordhuis)
68+
69+
* test: support common user profile on IBMi (Xu Meng)
70+
71+
* build: test on more platforms via QEMU in CI (gengjiawen)
72+
73+
174
2020.04.20, Version 1.37.0 (Stable), 02a9e1be252b623ee032a3137c0b0c94afbe6809
275

376
Changes since version 1.36.0:

Diff for: configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

1515
AC_PREREQ(2.57)
16-
AC_INIT([libuv], [1.37.0], [https://github.com/libuv/libuv/issues])
16+
AC_INIT([libuv], [1.38.0], [https://github.com/libuv/libuv/issues])
1717
AC_CONFIG_MACRO_DIR([m4])
1818
m4_include([m4/libuv-extra-automake-flags.m4])
1919
m4_include([m4/as_case.m4])

Diff for: include/uv/version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
*/
3232

3333
#define UV_VERSION_MAJOR 1
34-
#define UV_VERSION_MINOR 37
35-
#define UV_VERSION_PATCH 1
36-
#define UV_VERSION_IS_RELEASE 0
37-
#define UV_VERSION_SUFFIX "dev"
34+
#define UV_VERSION_MINOR 38
35+
#define UV_VERSION_PATCH 0
36+
#define UV_VERSION_IS_RELEASE 1
37+
#define UV_VERSION_SUFFIX ""
3838

3939
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
4040
(UV_VERSION_MINOR << 8) | \

0 commit comments

Comments
 (0)