mirror of
https://github.com/curl/curl.git
synced 2025-02-11 14:50:40 +08:00
RELEASE-NOTES: synced
Bumped curlver to 7.80.0-dev
This commit is contained in:
parent
7cf5e8e70e
commit
23ca537aa4
@ -1,23 +1,20 @@
|
||||
curl and libcurl 7.79.1
|
||||
curl and libcurl 7.80.0
|
||||
|
||||
Public curl releases: 203
|
||||
Public curl releases: 204
|
||||
Command line options: 242
|
||||
curl_easy_setopt() options: 290
|
||||
Public functions in libcurl: 85
|
||||
Contributors: 2489
|
||||
|
||||
This release includes the following changes:
|
||||
|
||||
o
|
||||
|
||||
This release includes the following bugfixes:
|
||||
|
||||
o Curl_http2_setup: don't change connection data on repeat invokes [10]
|
||||
o curl_multi_fdset: make FD_SET() not operate on sockets out of range [4]
|
||||
o dist: provide lib/.checksrc in the tarball [6]
|
||||
o FAQ: add GOPHERS + curl works on data, not files
|
||||
o hsts: CURLSTS_FAIL from hsts read callback should fail transfer [8]
|
||||
o hsts: handle unlimited expiry [3]
|
||||
o http: fix the broken >3 digit response code detection [1]
|
||||
o strerror: use sys_errlist instead of strerror on Windows [5]
|
||||
o test1184: disable [9]
|
||||
o tests/sshserver.pl: make it work with openssh-8.7p1 [2]
|
||||
o ci: update Lift config to match requirements of curl build [1]
|
||||
o cleanup: constify unmodified static structs [2]
|
||||
o misc: fix typos in docs and comments [3]
|
||||
|
||||
This release includes the following known bugs:
|
||||
|
||||
@ -26,19 +23,11 @@ This release includes the following known bugs:
|
||||
This release would not have looked like this without help, code, reports and
|
||||
advice from friends like these:
|
||||
|
||||
0xee on github, Daniel Stenberg, Evangelos Foutras, Glenn de boer,
|
||||
Jonathan Cardoso Machado, Kamil Dudka, Marcel Raad, Ray Satiro,
|
||||
RiderALT on github, tawmoto on github, Viktor Szakats,
|
||||
(11 contributors)
|
||||
a1346054 on github, Daniel Stenberg, Rikard Falkeborn, Thomas M. DuBuisson,
|
||||
(4 contributors)
|
||||
|
||||
References to bug reports and discussions on issues:
|
||||
|
||||
[1] = https://curl.se/bug/?i=7738
|
||||
[2] = https://curl.se/bug/?i=7724
|
||||
[3] = https://curl.se/bug/?i=7720
|
||||
[4] = https://curl.se/bug/?i=7718
|
||||
[5] = https://curl.se/bug/?i=7735
|
||||
[6] = https://curl.se/bug/?i=7733
|
||||
[8] = https://curl.se/bug/?i=7726
|
||||
[9] = https://curl.se/bug/?i=7725
|
||||
[10] = https://curl.se/bug/?i=7730
|
||||
[1] = https://curl.se/bug/?i=7761
|
||||
[2] = https://curl.se/bug/?i=7759
|
||||
[3] = https://curl.se/bug/?i=7747
|
||||
|
@ -30,13 +30,13 @@
|
||||
|
||||
/* This is the version number of the libcurl package from which this header
|
||||
file origins: */
|
||||
#define LIBCURL_VERSION "7.79.1-DEV"
|
||||
#define LIBCURL_VERSION "7.80.0-DEV"
|
||||
|
||||
/* The numeric version number is also available "in parts" by using these
|
||||
defines: */
|
||||
#define LIBCURL_VERSION_MAJOR 7
|
||||
#define LIBCURL_VERSION_MINOR 79
|
||||
#define LIBCURL_VERSION_PATCH 1
|
||||
#define LIBCURL_VERSION_MINOR 80
|
||||
#define LIBCURL_VERSION_PATCH 0
|
||||
|
||||
/* This is the numeric version of the libcurl version number, meant for easier
|
||||
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
|
||||
and needs it to contain the full number.
|
||||
*/
|
||||
#define LIBCURL_VERSION_NUM 0x074f01
|
||||
#define LIBCURL_VERSION_NUM 0x075000
|
||||
|
||||
/*
|
||||
* This is the date and time when the full source package was created. The
|
||||
|
Loading…
Reference in New Issue
Block a user