]> granicus.if.org Git - curl/commitdiff
7.7-beta5 commit curl-7_7-beta5
authorDaniel Stenberg <daniel@haxx.se>
Mon, 19 Mar 2001 08:42:00 +0000 (08:42 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 19 Mar 2001 08:42:00 +0000 (08:42 +0000)
CHANGES
include/curl/curl.h
src/version.h

diff --git a/CHANGES b/CHANGES
index 56d15da0bf24dd8be434414d9801d57b77a631d2..6b03bd7f6c02df0d1da8825dac5e87d6f2a2bda2 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,20 @@
 
                                History of Changes
 
+Version 7.7-beta5
+
+Daniel (19 March 2001)
+- Georg Ottinger reported problems with using -C together with -L in the sense
+  that the -C info got lost when it was redirected. I could not repeat this
+  problem on the 7.7 branch why I leave this for the moment. Test case 39 was
+  added to do exactly this, and it seems to do right.
+
+- Christian Robottom Reis reported how his 7.7 beta didn't successfully do
+  form posts as elegantly as 7.6.1 did. Indeed, this was a flaw in the header
+  engine, as HTTP 1.1 has introduced a new 100 "transient" return code for PUT
+  and POST operations that I need to add support for. Section 8.2.3 in RFC2616
+  has all the details. Seems to work now!
+
 Daniel (16 March 2001)
 - After having experienced another machine break-down, we're back.
 
@@ -17,6 +31,10 @@ Daniel (16 March 2001)
   into a subdirectory in there. Not much PHP info yet, but I plan to. Please
   help me here as well!
 
+- Made libcurl return error if a transfer is aborted in the middle of a
+  "chunk". It actually enables libcurl to discover premature transfer aborts
+  even if the Content-Length: size is unknown.
+
 Daniel (15 March 2001)
 - Added --connect-timeout to curl, which sets the new CURLOPT_CONNECTTIMEOUT
   option in libcurl. It limits the time curl is allowed to spend in the
index 175eaddf1f2d8ac9f48d45bb4ca7c6eecd11c1ae..b98f3050fa0859cc27a17958c7f8e43573efb17c 100644 (file)
@@ -476,7 +476,7 @@ char *curl_getenv(char *variable);
 char *curl_version(void);
 
 /* This is the version number */
-#define LIBCURL_VERSION "7.7-beta3"
+#define LIBCURL_VERSION "7.7-beta5"
 #define LIBCURL_VERSION_NUM 0x070700
 
 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
index 1b0bc5908789314861429696106a07aa03041fb8..0c024d57a922f962b681e15622fe8b2bc9b964d1 100644 (file)
@@ -1,3 +1,3 @@
 #define CURL_NAME "curl"
-#define CURL_VERSION "7.7-beta3"
+#define CURL_VERSION "7.7-beta5"
 #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "