1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-11 05:58:01 -05:00

RELEASE-NOTES: synced

The next release is now to become 7.73.0
This commit is contained in:
Daniel Stenberg 2020-08-24 16:59:50 +02:00
parent 4ebac06106
commit ddf47bbc0a
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 30 additions and 9 deletions

View File

@ -1,17 +1,26 @@
curl and libcurl 7.72.1 curl and libcurl 7.73.0
Public curl releases: 195 Public curl releases: 195
Command line options: 232 Command line options: 232
curl_easy_setopt() options: 277 curl_easy_setopt() options: 277
Public functions in libcurl: 82 Public functions in libcurl: 82
Contributors: 2240 Contributors: 2242
This release includes the following changes: This release includes the following changes:
o o curl: support XDG_CONFIG_HOME to find .curlrc [3]
o CURLE_PROXY: new error code [7]
o sftp: add new quote commands 'atime' and 'mtime' [6]
This release includes the following bugfixes: This release includes the following bugfixes:
o checksrc: verify do-while and spaces between the braces [2]
o dist: add missing CMake Find modules to the distribution [14]
o etag: save and use the full received contents [4]
o Makefile.m32: add ability to override zstd libs [ci skip] [10]
o runtests: clear pid variables when failing to start a server [12]
o runtests: make cleardir() erase dot files too [8]
o setopt: if the buffer exists, refuse the new BUFFERSIZE [5]
o tls: provide the CApath verbose log on its own line [1] o tls: provide the CApath verbose log on its own line [1]
This release includes the following known bugs: This release includes the following known bugs:
@ -21,11 +30,23 @@ 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:
Daniel Stenberg, jmdavitt on github, Viktor Szakats, Andrew Barnes, Christian Weisgerber, COFFEETALES on github, Daniel Stenberg,
(3 contributors) Don J Olmstead, Eli Schwartz, Harry Sintonen, jmdavitt on github, Ray Satiro,
Viktor Szakats,
(10 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=5826 [1] = https://curl.haxx.se/bug/?i=5826
[2] = https://curl.haxx.se/bug/?i=5845
[3] = https://curl.haxx.se/bug/?i=5829
[4] = https://curl.haxx.se/bug/?i=5610
[5] = https://curl.haxx.se/bug/?i=5842
[6] = https://curl.haxx.se/bug/?i=5810
[7] = https://curl.haxx.se/bug/?i=5770
[8] = https://curl.haxx.se/bug/?i=5838
[10] = https://curl.haxx.se/bug/?i=5840
[12] = https://curl.haxx.se/mail/lib-2020-08/0018.html
[14] = https://curl.haxx.se/bug/?i=5836

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.72.1-DEV" #define LIBCURL_VERSION "7.73.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 72 #define LIBCURL_VERSION_MINOR 73
#define LIBCURL_VERSION_PATCH 1 #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 0x074801 #define LIBCURL_VERSION_NUM 0x074900
/* /*
* 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