2021.08.24, Version 1.42.1 (Stable)
Changes since version 1.42.0: * run test named ip6_sin6_len (Jameson Nash) * docs: fix wrong information about scheduling (Mohamed Edrah) * unix: protect fork in uv_spawn from signals (Jameson Nash) * drop only successfully sent packets post sendmmsg (Supragya Raj)
This commit is contained in:
parent
6530ea2ff2
commit
ec16b76a48
2
AUTHORS
2
AUTHORS
@ -479,3 +479,5 @@ Joshua M. Clulow <josh@sysmgr.org>
|
||||
Guilherme Íscaro <cabelitostos@gmail.com>
|
||||
Martin Storsjö <martin@martin.st>
|
||||
Claes Nästén <pekdon@gmail.com>
|
||||
Mohamed Edrah <43171151+MSE99@users.noreply.github.com>
|
||||
Supragya Raj <supragyaraj@gmail.com>
|
||||
|
||||
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
||||
2021.08.24, Version 1.42.1 (Stable)
|
||||
|
||||
Changes since version 1.42.0:
|
||||
|
||||
* run test named ip6_sin6_len (Jameson Nash)
|
||||
|
||||
* docs: fix wrong information about scheduling (Mohamed Edrah)
|
||||
|
||||
* unix: protect fork in uv_spawn from signals (Jameson Nash)
|
||||
|
||||
* drop only successfully sent packets post sendmmsg (Supragya Raj)
|
||||
|
||||
|
||||
2021.07.21, Version 1.42.0 (Stable), 6ce14710da7079eb248868171f6343bc409ea3a4
|
||||
|
||||
Changes since version 1.41.0:
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.42.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.42.1], [https://github.com/libuv/libuv/issues])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||
m4_include([m4/as_case.m4])
|
||||
|
||||
@ -33,8 +33,8 @@
|
||||
#define UV_VERSION_MAJOR 1
|
||||
#define UV_VERSION_MINOR 42
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
#define UV_VERSION_SUFFIX ""
|
||||
|
||||
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
||||
(UV_VERSION_MINOR << 8) | \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user