7.9.4-pre2
diff --git a/CHANGES b/CHANGES
index d0a1a9d..67e9bb1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,12 +6,41 @@
 
                                History of Changes
 
+
+Daniel (3 February 2002)
+- Eric Melville provided a few spelling corrections in the curl man page.
+
+Daniel (1 February 2002)
+- Andreas Damm corrected the unconditional use of gmtime() in getdate, it now
+  uses gmtime_r() on all hosts that have it.
+
+Daniel (31 January 2002)
+- An anonymous bug report identified a problem in the DNS caching which made it
+  sometimes allocate one byte too little to store the cache entry in. This
+  happened when the port number started with 1!
+
+- Albert Chin provided a patch that improves the gethostbyname_r() configure
+  check on HP-UX 11.00.
+
+Version 7.9.4-pre1
+
+Daniel (30 January 2002)
+- Georg Horn found another way the SSL reading failed due to the non-blocking
+  state of the sockets! I fixed.
+
 Daniel (29 January 2002)
+- Multipart formposts now send the full request properly, including the CRLF.
+  They were previously treated as part of the post data.
+
+- The upload byte counter bugged.
+
 - T. Bharath pointed out that we seed SSL on every connect, which is a time-
   consuming operation that should only be needed to do once. We patched
   libcurl to now only seed on the first connect when unseeded. The seeded
   status is global so it'll now only happen once during a program's life time.
 
+  If the random_file or egdsocket is set, the seed will be re-made though.
+
 - Giaslas Georgios introduced CURLINFO_CONTENT_TYPE that lets
   curl_easy_getinfo() read the content-type from the previous request.
 
diff --git a/docs/libcurl.3 b/docs/libcurl.3
index 94de31d..16af698 100644
--- a/docs/libcurl.3
+++ b/docs/libcurl.3
@@ -6,8 +6,10 @@
 .SH NAME
 libcurl \- client-side URL transfers
 .SH DESCRIPTION
-This is an overview on how to use libcurl in your c/c++ programs. There are
-specific man pages for each function mentioned in here.
+This is an overview on how to use libcurl in your C programs. There are
+specific man pages for each function mentioned in here. There's also the
+libcurl-the-guide document for a complete tutorial to programming with
+libcurl.
 
 libcurl can also be used directly from within your Java, PHP, Perl, Ruby or
 Tcl programs as well, look elsewhere for documentation on this!
@@ -56,9 +58,6 @@
 .B curl_formadd()
 helps building a HTTP form POST
 .TP
-.B curl_formparse()
-helps building a HTTP form POST (deprecated since 7.9 use curl_formadd()!)
-.TP
 .B curl_formfree()
 free a list built with curl_formparse()/curl_formadd()
 .TP
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 25f08c2..07dafd7 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -613,7 +613,7 @@
 void curl_global_cleanup(void);
 
 /* This is the version number */
-#define LIBCURL_VERSION "7.9.4-pre1"
+#define LIBCURL_VERSION "7.9.4-pre2"
 #define LIBCURL_VERSION_NUM 0x070904
 
 /* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index 6c13071..9a4a9b5 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
 #define CURL_NAME "curl"
-#define CURL_VERSION "7.9.3"
+#define CURL_VERSION "7.9.4-pre2"
 #define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "