also bump next pending version to become 7.83.0
This commit is contained in:
Daniel Stenberg 2022-03-11 08:00:56 +01:00
Родитель 680245cd39
Коммит eed2e8e257
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
2 изменённых файлов: 47 добавлений и 10 удалений

Просмотреть файл

@ -1,24 +1,41 @@
curl and libcurl 7.82.1 curl and libcurl 7.83.0
Public curl releases: 207 Public curl releases: 207
Command line options: 245 Command line options: 245
curl_easy_setopt() options: 295 curl_easy_setopt() options: 295
Public functions in libcurl: 86 Public functions in libcurl: 86
Contributors: 2597 Contributors: 2601
This release includes the following changes: This release includes the following changes:
o o curl: add --remove-on-error [11]
This release includes the following bugfixes: This release includes the following bugfixes:
o CI: install Python package impacket to run SMB test 1451 [5] o CI: install Python package impacket to run SMB test 1451 [5]
o configure.ac: move -pthread CFLAGS setting back where it used to be [14]
o connect: make Curl_getconnectinfo work with conn cache from share handle [22]
o connect: use TCP_KEEPALIVE only if TCP_KEEPIDLE is not defined [6] o connect: use TCP_KEEPALIVE only if TCP_KEEPIDLE is not defined [6]
o curl/system.h: update ifdef condition for MCST-LCC compiler [4] o curl/system.h: update ifdef condition for MCST-LCC compiler [4]
o curl: error out when options need features not present in libcurl [18]
o CURLSHOPT_UNLOCKFUNC.3: fix the callback prototype [9]
o docs/HYPER.md: updated to reflect current hyper build needs o docs/HYPER.md: updated to reflect current hyper build needs
o GHA: build hyper with nightly rustc [7] o GHA: build hyper with nightly rustc [7]
o hyper: fix status_line() return code [13]
o ipv4/6.d: clarify that they are about using IP addresses [3] o ipv4/6.d: clarify that they are about using IP addresses [3]
o json.d: fix typo (overriden -> overridden) [24]
o libssh: fix build with old libssh versions [12]
o mk-ca-bundle.vbs: delete this script in favor of mk-ca-bundle.pl [8]
o ngtcp2: add client certificate authentication for OpenSSL [15]
o ngtcp2: disconnect the QUIC connection proper [19]
o nonblock: restore setsockopt method to curlx_nonblock [20]
o openssl: check SSL_get_peer_cert_chain return value [1]
o openssl: enable CURLOPT_SSL_EC_CURVES with BoringSSL [23]
o openssl: fix CN check error code [21]
o runtests: make 'oldlibssh' be before 0.9.4 [2] o runtests: make 'oldlibssh' be before 0.9.4 [2]
o test386: Fix an incorrect test markup tag
o tool_operate: fix a scan-build warning [16]
o wolfssl: fix compiler error without IPv6 [25]
This release includes the following known bugs: This release includes the following known bugs:
@ -27,15 +44,35 @@ 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, Marc Hörsken, Michał Antoniak, Paul Howarth, Alejandro R. Sedeño, Colin Leroy, Dan Fandrich, Daniel Stenberg,
r-a-sattarov on github Don J Olmstead, Francisco Olarte, Frank Meier, Jean-Philippe Menil,
(5 contributors) Joseph Chen, Kristoffer Gleditsch, Marc Hörsken, mehatzri on github,
Michał Antoniak, Paul Howarth, r-a-sattarov on github, Ray Satiro,
Samuel Henrique, Tatsuhiro Tsujikawa,
(18 contributors)
References to bug reports and discussions on issues: References to bug reports and discussions on issues:
[1] = https://curl.se/bug/?i=8579
[2] = https://curl.se/bug/?i=8548 [2] = https://curl.se/bug/?i=8548
[3] = https://curl.se/bug/?i=8543 [3] = https://curl.se/bug/?i=8543
[4] = https://curl.se/bug/?i=8546 [4] = https://curl.se/bug/?i=8546
[5] = https://curl.se/bug/?i=8544 [5] = https://curl.se/bug/?i=8544
[6] = https://curl.se/bug/?i=8539 [6] = https://curl.se/bug/?i=8539
[7] = https://curl.se/bug/?i=8545 [7] = https://curl.se/bug/?i=8545
[8] = https://curl.se/bug/?i=8412
[9] = https://curl.se/bug/?i=8573
[11] = https://curl.se/bug/?i=8503
[12] = https://curl.se/bug/?i=8574
[13] = https://curl.se/bug/?i=8572
[14] = https://curl.se/bug/?i=8541
[15] = https://curl.se/bug/?i=8522
[16] = https://curl.se/bug/?i=8565
[18] = https://curl.se/bug/?i=8565
[19] = https://curl.se/bug/?i=8534
[20] = https://curl.se/bug/?i=8562
[21] = https://curl.se/bug/?i=8559
[22] = https://curl.se/bug/?i=8524
[23] = https://curl.se/bug/?i=8553
[24] = https://curl.se/bug/?i=8557
[25] = https://curl.se/bug/?i=8550

Просмотреть файл

@ -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.82.1-DEV" #define LIBCURL_VERSION "7.83.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 82 #define LIBCURL_VERSION_MINOR 83
#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 0x075201 #define LIBCURL_VERSION_NUM 0x075300
/* /*
* 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