7.8.1-pre3 commit
diff --git a/CHANGES b/CHANGES
index 135bdc1..fa03788 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,11 @@
 
                                History of Changes
 
+Daniel (6 August 2001)
+- Jonathan Hseu noticed that you couldn't get a header callback unless you
+  set CURLOPT_WRITEHEADER to non-NULL, even if you didn't care about that
+  data. This is now fixed.
+
 Daniel (5 August 2001)
 - Sergio Ballestrero provided a patch for reading responses from NCSA httpd
   1.5.x servers, as they return really screwed up response headers when asked
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 8fcf65e..3931731 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -509,7 +509,7 @@
 
 
 /* This is the version number */
-#define LIBCURL_VERSION "7.8.1-pre2"
+#define LIBCURL_VERSION "7.8.1-pre3"
 #define LIBCURL_VERSION_NUM 0x070801
 
 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index 8bf2bed..67b908e 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
 #define CURL_NAME "curl"
-#define CURL_VERSION "7.8"
+#define CURL_VERSION "7.8.1-pre3"
 #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 6fa4477..ac87beb 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -514,7 +514,7 @@
             if(!$short) {
                 print "curl returned $res\n";
             }
-            print " error FAILED";
+            print " error FAILED\n";
             return 1;
         }
     }
@@ -525,7 +525,7 @@
 
         $res = compare(\@actual, \@validstdout);
         if($res) {
-            print " stdout FAILED";
+            print " stdout FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -540,7 +540,7 @@
         my @out = loadarray($CURLOUT);
         $res = compare(\@out, \@reply);
         if ($res) {
-            print " data FAILED";
+            print " data FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -553,7 +553,7 @@
         my @out = loadarray("$LOGDIR/upload.$testnum");
         $res = compare(\@out, \@upload);
         if ($res) {
-            print " upload FAILED";
+            print " upload FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -578,7 +578,7 @@
 
         $res = compare(\@out, \@protstrip);
         if($res) {
-            print " protocol FAILED";
+            print " protocol FAILED\n";
             return 1;
         }
         if(!$short) {
@@ -600,7 +600,7 @@
 
         $res = compare(\@generated, \@outfile);
         if($res) {
-            print " output FAILED";
+            print " output FAILED\n";
             return 1;
         }
         if(!$short) {