mirror of
https://github.com/moparisthebest/curl
synced 2025-01-06 11:28:07 -05:00
start working on 7.16.5...
This commit is contained in:
parent
4b1782c371
commit
04d3a8c714
@ -1,7 +1,7 @@
|
|||||||
Curl and libcurl 7.16.4
|
Curl and libcurl 7.16.5
|
||||||
|
|
||||||
Public curl release number: 100
|
Public curl release number: 101
|
||||||
Releases counted from the very beginning: 126
|
Releases counted from the very beginning: 127
|
||||||
Available command line options: 118
|
Available command line options: 118
|
||||||
Available curl_easy_setopt() options: 143
|
Available curl_easy_setopt() options: 143
|
||||||
Number of public functions in libcurl: 55
|
Number of public functions in libcurl: 55
|
||||||
@ -11,20 +11,11 @@ Curl and libcurl 7.16.4
|
|||||||
|
|
||||||
This release includes the following changes:
|
This release includes the following changes:
|
||||||
|
|
||||||
o added CURLOPT_NEW_FILE_PERMS and CURLOPT_NEW_DIRECTORY_PERMS
|
o
|
||||||
o improved hashing of sockets for the multi_socket API
|
|
||||||
o ftp kerberos5 support added
|
|
||||||
|
|
||||||
This release includes the following bugfixes:
|
This release includes the following bugfixes:
|
||||||
|
|
||||||
o adjusted how libcurl treats HTTP 1.1 responses without content-lenth or
|
o
|
||||||
chunked encoding
|
|
||||||
o fixed the 10-at-a-time.c example
|
|
||||||
o FTP over SOCKS proxy
|
|
||||||
o improved error messages on SCP upload failures
|
|
||||||
o security flaw (http://curl.haxx.se/docs/adv_20070710.html) in which libcurl
|
|
||||||
failed to properly reject some outdated or not yet valid server certificates
|
|
||||||
when built with GnuTLS
|
|
||||||
|
|
||||||
This release includes the following known bugs:
|
This release includes the following known bugs:
|
||||||
|
|
||||||
@ -41,7 +32,6 @@ New curl mirrors:
|
|||||||
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:
|
||||||
|
|
||||||
Robert Iakobashvili, James Housley, Günter Knauf, James Bursa, Song Ma,
|
|
||||||
Thomas J. Moore, Gavrie Philipson, Kees Cook
|
|
||||||
|
|
||||||
Thanks! (and sorry if I forgot to mention someone)
|
Thanks! (and sorry if I forgot to mention someone)
|
||||||
|
@ -28,13 +28,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.16.4-CVS"
|
#define LIBCURL_VERSION "7.16.5-CVS"
|
||||||
|
|
||||||
/* 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 16
|
#define LIBCURL_VERSION_MINOR 16
|
||||||
#define LIBCURL_VERSION_PATCH 4
|
#define LIBCURL_VERSION_PATCH 5
|
||||||
|
|
||||||
/* 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 comparions by programs. The LIBCURL_VERSION_NUM define will
|
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
|
||||||
@ -51,7 +51,7 @@
|
|||||||
and it is always a greater number in a more recent release. It makes
|
and it is always a greater number in a more recent release. It makes
|
||||||
comparisons with greater than and less than work.
|
comparisons with greater than and less than work.
|
||||||
*/
|
*/
|
||||||
#define LIBCURL_VERSION_NUM 0x071004
|
#define LIBCURL_VERSION_NUM 0x071005
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* 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
|
||||||
|
Loading…
Reference in New Issue
Block a user