Codebase list libuv1 / 4e69e33
2020.09.26, Version 1.40.0 (Stable) Changes since version 1.39.0: * udp: add UV_UDP_MMSG_FREE recv_cb flag (Ryan Liptak) * include: re-map UV__EPROTO from 4046 to -4046 (YuMeiJie) * doc: correct UV_UDP_MMSG_FREE version added (cjihrig) * doc: add uv_metrics_idle_time() version metadata (Ryan Liptak) * win,tty: pass through utf-16 surrogate pairs (Mustafa M) * unix: fix DragonFly BSD build (Aleksej Lebedev) * win,udp: fix error code returned by connect() (Santiago Gimeno) * src: suppress user_timeout maybe-uninitialized (Daniel Bevenius) * test: fix compiler warning (Vladimír Čunát) * build: fix the Haiku cmake build (David Carlier) * linux: fix i386 sendmmsg/recvmmsg support (Ben Noordhuis) * build: add libuv-static pkg-config file (Nikolay Mitev) * unix,win: add uv_timer_get_due_in() (Ulrik Strid) * build,unix: add QNX support (Elad Lahav) * include: remove incorrect UV__ERR() for EPROTO (cjihrig) cjihrig 3 years ago
4 changed file(s) with 45 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
442442 Evan Lucas <evanlucas@me.com>
443443 tjarlama <59913901+tjarlama@users.noreply.github.com>
444444 司徒玟琅 <sanjusss@qq.com>
445 YuMeiJie <yumeijie@huawei.com>
446 Aleksej Lebedev <root@zta.lk>
447 Nikolay Mitev <github@hmel.org>
448 Ulrik Strid <ulrik.strid@outlook.com>
449 Elad Lahav <elahav@qnx.com>
0 2020.09.26, Version 1.40.0 (Stable)
1
2 Changes since version 1.39.0:
3
4 * udp: add UV_UDP_MMSG_FREE recv_cb flag (Ryan Liptak)
5
6 * include: re-map UV__EPROTO from 4046 to -4046 (YuMeiJie)
7
8 * doc: correct UV_UDP_MMSG_FREE version added (cjihrig)
9
10 * doc: add uv_metrics_idle_time() version metadata (Ryan Liptak)
11
12 * win,tty: pass through utf-16 surrogate pairs (Mustafa M)
13
14 * unix: fix DragonFly BSD build (Aleksej Lebedev)
15
16 * win,udp: fix error code returned by connect() (Santiago Gimeno)
17
18 * src: suppress user_timeout maybe-uninitialized (Daniel Bevenius)
19
20 * test: fix compiler warning (Vladimír Čunát)
21
22 * build: fix the Haiku cmake build (David Carlier)
23
24 * linux: fix i386 sendmmsg/recvmmsg support (Ben Noordhuis)
25
26 * build: add libuv-static pkg-config file (Nikolay Mitev)
27
28 * unix,win: add uv_timer_get_due_in() (Ulrik Strid)
29
30 * build,unix: add QNX support (Elad Lahav)
31
32 * include: remove incorrect UV__ERR() for EPROTO (cjihrig)
33
34
035 2020.08.26, Version 1.39.0 (Stable), 25f4b8b8a3c0f934158cd37a37b0525d75ca488e
136
237 Changes since version 1.38.1:
1212 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1313
1414 AC_PREREQ(2.57)
15 AC_INIT([libuv], [1.39.0], [https://github.com/libuv/libuv/issues])
15 AC_INIT([libuv], [1.40.0], [https://github.com/libuv/libuv/issues])
1616 AC_CONFIG_MACRO_DIR([m4])
1717 m4_include([m4/libuv-extra-automake-flags.m4])
1818 m4_include([m4/as_case.m4])
3030 */
3131
3232 #define UV_VERSION_MAJOR 1
33 #define UV_VERSION_MINOR 39
34 #define UV_VERSION_PATCH 1
35 #define UV_VERSION_IS_RELEASE 0
36 #define UV_VERSION_SUFFIX "dev"
33 #define UV_VERSION_MINOR 40
34 #define UV_VERSION_PATCH 0
35 #define UV_VERSION_IS_RELEASE 1
36 #define UV_VERSION_SUFFIX ""
3737
3838 #define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
3939 (UV_VERSION_MINOR << 8) | \