summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-04-04 06:23:43 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-04-04 06:23:43 +0000
commit50a53d4eecec60d348100e8506bd01fefd2b5f7f (patch)
tree393550b6d4e1da9491882121ee6e5f1a12078502
parent6bd1ed034a83371088bcc08f70cc6878aeb3973b (diff)
downloadgnurl-curl-7_7_1.tar.gz
gnurl-curl-7_7_1.tar.bz2
gnurl-curl-7_7_1.zip
7.7.1 commitcurl-7_7_1
-rw-r--r--CHANGES6
-rw-r--r--include/curl/curl.h2
-rw-r--r--src/version.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index da3e9e683..ea5bf826e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,11 +6,17 @@
History of Changes
+Version 7.7.1
+
Daniel (3 April 2001)
- Puneet Pawaia pointed out two serious problems. Libcurl would attempt to
read bad memory during situations when an (ftp) connection attempt failed.
Also, the lib/Makefile.vc6 was corrected.
+- More investigations in the Location: following code made me realize that
+ it was not clean enough to work transparantly with persistant and non-
+ persistant connections. I think I've fixed it now.
+
Daniel (29 March 2001)
- Georg Horn mailed me some corrections for the Curl::easy perl interface.
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 8b4c75be3..0a612c006 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -481,7 +481,7 @@ char *curl_escape(char *string, int length);
char *curl_unescape(char *string, int length);
/* This is the version number */
-#define LIBCURL_VERSION "7.7.1-beta1"
+#define LIBCURL_VERSION "7.7.1"
#define LIBCURL_VERSION_NUM 0x070701
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index c95f678b9..9ee8118b8 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.7"
+#define CURL_VERSION "7.7.1"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "