aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-11-04 11:35:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-11-04 11:35:12 +0000
commit329bcf3a7117c7e5c26d7c8f840af64fb7140753 (patch)
treee78d4d1297f4cc2eef2bc893ce23082953370f7e
parent0cb12d7e787f520249c2faa636ff49f4acbebbca (diff)
7.9.1 cleanup commit
-rw-r--r--CHANGES9
-rw-r--r--include/curl/curl.h2
-rw-r--r--src/version.h2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 20def2135..9f4a52ce2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,15 @@
History of Changes
+Version 7.9.1
+
+Daniel (4 November 2001)
+- I've added a number of new test cases the last few days. A few of them since
+ I got reports that hinted on problems on timeouts, so I added four tests
+ with timeouts for all sorts of protocols and stuff. I also came to think of
+ a few other error scenarios that we currently didn't test properly, so I
+ wrote up tests for a few of those too.
+
Daniel (2 November 2001)
- Replaced read() and write() with recv() and send() for socket operations
even under normal unixes.
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 85ace4729..1075b6e4f 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -575,7 +575,7 @@ CURLcode curl_global_init(long flags);
void curl_global_cleanup(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.9.1-pre4"
+#define LIBCURL_VERSION "7.9.1"
#define LIBCURL_VERSION_NUM 0x070901
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index a5540e43a..4bf68a32b 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.9.1-pre1"
+#define CURL_VERSION "7.9.1"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "