2021.07.08, Version 1.41.1 (Stable)

Changes since version 1.41.0:

* idna: fix OOB read in punycode decoder (Ben Noordhuis)
This commit is contained in:
Jameson Nash 2021-07-07 12:45:36 -04:00
parent 86dbeb4bd6
commit 8c438ced8f
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2021.07.08, Version 1.41.1 (Stable)
Changes since version 1.41.0:
* idna: fix OOB read in punycode decoder (Ben Noordhuis)
2021.02.14, Version 1.41.0 (Stable), 1dff88e5161cba5c59276d2070d2e304e4dcb242
Changes since version 1.40.0:

View File

@ -13,7 +13,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
AC_PREREQ(2.57)
AC_INIT([libuv], [1.41.0], [https://github.com/libuv/libuv/issues])
AC_INIT([libuv], [1.41.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])

View File

@ -33,8 +33,8 @@
#define UV_VERSION_MAJOR 1
#define UV_VERSION_MINOR 41
#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) | \