diff options
-rw-r--r-- | CHANGES | 7 | ||||
-rw-r--r-- | include/curl/curl.h | 2 | ||||
-rw-r--r-- | src/version.h | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -6,6 +6,13 @@ History of Changes +Version 7.9.2 + +Daniel (5 December 2001) +- Jon Travis found out that if you used libcurl and CURLOPT_UPLOAD and then + on the same handle used CURLOPT_HTTPGET it would still attempt to upload. + His suggested fix was perfect. + Daniel (4 December 2001) - Incorporated more macos fixes and added four specific files in a new subdirectory below src. diff --git a/include/curl/curl.h b/include/curl/curl.h index 22440b433..4a89467d4 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -584,7 +584,7 @@ CURLcode curl_global_init(long flags); void curl_global_cleanup(void); /* This is the version number */ -#define LIBCURL_VERSION "7.9.2-pre6" +#define LIBCURL_VERSION "7.9.2" #define LIBCURL_VERSION_NUM 0x070902 /* linked-list structure for the CURLOPT_QUOTE option (and other) */ diff --git a/src/version.h b/src/version.h index 4bf68a32b..5e6c210c5 100644 --- a/src/version.h +++ b/src/version.h @@ -1,3 +1,3 @@ #define CURL_NAME "curl" -#define CURL_VERSION "7.9.1" +#define CURL_VERSION "7.9.2" #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") " |