diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-12 12:48:40 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-12 12:48:40 +0000 |
commit | 6550d271f0e83267e124c6a972f39f65d87a0593 (patch) | |
tree | c15a81dcba9d28c139166703e9db4bf09a4f5368 | |
parent | c46da652632a4c0719e4343d7d7030266c92588d (diff) |
7.10.7-pre4 commit
-rw-r--r-- | CHANGES | 9 | ||||
-rw-r--r-- | include/curl/curl.h | 2 | ||||
-rw-r--r-- | src/version.h | 2 |
3 files changed, 11 insertions, 2 deletions
@@ -6,6 +6,15 @@ Changelog +Version 7.10.7-pre4 (12 August 2003) + +Daniel (12 August) +- curl_version_info() now returns a flag if libcurl was built with asynch DNS + support, and this is now also displayed with 'curl -V'. + +- Added a few new man pages to the docs/libcurl dir: curl_share_init, + curl_share_setopt, curl_share_cleanup, libcurl-easy and libcurl-share. + Daniel (11 August) - Mike Cherepov made the local binding code work for Windows, which makes the option CURLOPT_INTERFACE work on Windows as well. diff --git a/include/curl/curl.h b/include/curl/curl.h index 4c4f41f13..8b6f31437 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -29,7 +29,7 @@ /* This is the version number of the libcurl package from which this header file origins: */ -#define LIBCURL_VERSION "7.10.7-pre3" +#define LIBCURL_VERSION "7.10.7-pre4" /* This is the numeric version of the libcurl version number, meant for easier parsing and comparions by programs. The LIBCURL_VERSION_NUM define will diff --git a/src/version.h b/src/version.h index a8cac78bc..1b02b0601 100644 --- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ #define CURL_NAME "curl" -#define CURL_VERSION "7.10.7-pre3" +#define CURL_VERSION "7.10.7-pre4" #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") " |