RELEASE-NOTES: synced

... and bumped to 7.72.0 as the next release version number
This commit is contained in:
Daniel Stenberg 2020-07-12 18:16:23 +02:00
parent e13357b14b
commit 2bd8fe8823
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 22 additions and 9 deletions

View File

@ -1,4 +1,4 @@
curl and libcurl 7.71.2 curl and libcurl 7.72.0
Public curl releases: 193 Public curl releases: 193
Command line options: 232 Command line options: 232
@ -9,18 +9,23 @@ curl and libcurl 7.71.2
This release includes the following changes: This release includes the following changes:
o o content_encoding: add zstd decoding support [1]
This release includes the following bugfixes: This release includes the following bugfixes:
o bearssl: fix build with disabled proxy support [16]
o cirrus-ci: upgrade 11-STABLE to 11.4 [2] o cirrus-ci: upgrade 11-STABLE to 11.4 [2]
o cmake: fix windows xp build [13]
o configure.ac: Sort features name in summary [6]
o curl_version_info.3: CURL_VERSION_KERBEROS4 is deprecated [9] o curl_version_info.3: CURL_VERSION_KERBEROS4 is deprecated [9]
o CURLINFO_CERTINFO.3: fix typo [3] o CURLINFO_CERTINFO.3: fix typo [3]
o ftpserver: don't verify SMTP MAIL FROM names [8] o ftpserver: don't verify SMTP MAIL FROM names [8]
o gnutls: repair the build with `CURL_DISABLE_PROXY` [5] o gnutls: repair the build with `CURL_DISABLE_PROXY` [5]
o http2: close the http2 connection when no more requests may be sent [7] o http2: close the http2 connection when no more requests may be sent [7]
o http2: fix nghttp2_strerror -> nghttp2_http2_strerror in debug messages [11] o http2: fix nghttp2_strerror -> nghttp2_http2_strerror in debug messages [11]
o ngtcp2: update to modified qlog callback prototype [14]
o tool_getparam: make --krb option work again [10] o tool_getparam: make --krb option work again [10]
o transfer: fix memory-leak with CURLOPT_CURLU in a duped handle [15]
o url: silence MSVC warning [12] o url: silence MSVC warning [12]
This release includes the following known bugs: This release includes the following known bugs:
@ -30,20 +35,28 @@ This release includes the following known bugs:
This release would not have looked like this without help, code, reports and This release would not have looked like this without help, code, reports and
advice from friends like these: advice from friends like these:
Alex Kiernan, Carlo Marcelo Arenas Belón, Daniel Stenberg, Filip Salomonsson, Alex Kiernan, Baruch Siach, Carlo Marcelo Arenas Belón, Daniel Stenberg,
Jeremy Maitin-Shepard, Kamil Dudka, Laramie Leavitt, Marcel Raad, Ray Satiro, Filip Salomonsson, Gilles Vollant, Jeremy Maitin-Shepard, Kamil Dudka,
(9 contributors) Laramie Leavitt, Marcel Raad, Matthias Naegler, Nicolas Sterchele,
NobodyXu on github, Peter Wu, Ray Satiro, Viktor Szakats,
(16 contributors)
Thanks! (and sorry if I forgot to mention someone) Thanks! (and sorry if I forgot to mention someone)
References to bug reports and discussions on issues: References to bug reports and discussions on issues:
[1] = https://curl.haxx.se/bug/?i=5453
[2] = https://curl.haxx.se/bug/?i=5668 [2] = https://curl.haxx.se/bug/?i=5668
[3] = https://curl.haxx.se/bug/?i=5655 [3] = https://curl.haxx.se/bug/?i=5655
[5] = https://curl.haxx.se/bug/?i=5645 [5] = https://curl.haxx.se/bug/?i=5645
[6] = https://curl.haxx.se/bug/?i=5656
[7] = https://curl.haxx.se/bug/?i=5643 [7] = https://curl.haxx.se/bug/?i=5643
[8] = https://curl.haxx.se/bug/?i=5639 [8] = https://curl.haxx.se/bug/?i=5639
[9] = https://curl.haxx.se/bug/?i=5642 [9] = https://curl.haxx.se/bug/?i=5642
[10] = https://bugzilla.redhat.com/1833193 [10] = https://bugzilla.redhat.com/1833193
[11] = https://curl.haxx.se/bug/?i=5641 [11] = https://curl.haxx.se/bug/?i=5641
[12] = https://curl.haxx.se/bug/?i=5638 [12] = https://curl.haxx.se/bug/?i=5638
[13] = https://curl.haxx.se/bug/?i=5662
[14] = https://curl.haxx.se/bug/?i=5675
[15] = https://curl.haxx.se/bug/?i=5665
[16] = https://curl.haxx.se/bug/?i=5666

View File

@ -30,13 +30,13 @@
/* This is the version number of the libcurl package from which this header /* This is the version number of the libcurl package from which this header
file origins: */ file origins: */
#define LIBCURL_VERSION "7.71.2-DEV" #define LIBCURL_VERSION "7.72.0-DEV"
/* The numeric version number is also available "in parts" by using these /* The numeric version number is also available "in parts" by using these
defines: */ defines: */
#define LIBCURL_VERSION_MAJOR 7 #define LIBCURL_VERSION_MAJOR 7
#define LIBCURL_VERSION_MINOR 71 #define LIBCURL_VERSION_MINOR 72
#define LIBCURL_VERSION_PATCH 2 #define LIBCURL_VERSION_PATCH 0
/* This is the numeric version of the libcurl version number, meant for easier /* This is the numeric version of the libcurl version number, meant for easier
parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will parsing and comparisons by programs. The LIBCURL_VERSION_NUM define will
@ -57,7 +57,7 @@
CURL_VERSION_BITS() macro since curl's own configure script greps for it CURL_VERSION_BITS() macro since curl's own configure script greps for it
and needs it to contain the full number. and needs it to contain the full number.
*/ */
#define LIBCURL_VERSION_NUM 0x074702 #define LIBCURL_VERSION_NUM 0x074800
/* /*
* This is the date and time when the full source package was created. The * This is the date and time when the full source package was created. The