summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-07-28 12:13:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-07-28 12:13:48 +0000
commitbdb5e5a25037a585e0ec6b83d29b25961c6823f8 (patch)
treedaee03842aaa4746dc99ecdc5032fc40b604c129
parent48a580e609c236be4d76be61f2e51821a964410f (diff)
downloadgnurl-bdb5e5a25037a585e0ec6b83d29b25961c6823f8.tar.gz
gnurl-bdb5e5a25037a585e0ec6b83d29b25961c6823f8.tar.bz2
gnurl-bdb5e5a25037a585e0ec6b83d29b25961c6823f8.zip
-rw-r--r--CHANGES22
-rw-r--r--include/curl/curl.h2
-rw-r--r--src/version.h2
3 files changed, 24 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 3f07fca52..c2f7562b0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,7 +6,29 @@
Changelog
+Version 7.10.6 (28 July 2003)
+
+Daniel (28 July)
+- François Pons brought a patch that once again made curl deal with ftp and
+ "double slash" as indicating the root directory. In the RFC1738-fix of April
+ 30, that ability was removed (since it is not the "right" way). So, starting
+ now we can list the root dir of an ftp server both these ways:
+
+ curl ftp://server.com/%2f as well as
+ curl ftp://server.com//
+
+Daniel (24 July)
+- Henry Bland pointed out that we included sys/resource.h without good reason
+ in several source files. Without it included, QNX builds better...
+
+- Andrés García updated the mingw makefiles.
+
Daniel (23 July)
+- Tracy Boehrer experienced DNS cache problems and did some nice debugging
+ and tracking which made it easy for me to correct the problem and Tracy
+ could verify that it did cure the problem! When re-using a connection we
+ now make sure we don't re-use the 'connect_addr' struct.
+
- Daniel Kouril corrected the GSS-Negotiate code.
- Juan F. Codagnone provided fixes to allow curl to build fine on Windows
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 4cde1aed5..71c490c5a 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -29,7 +29,7 @@
/* This is the version number of the libcurl package from which this header
file origins: */
-#define LIBCURL_VERSION "7.10.6-pre4"
+#define LIBCURL_VERSION "7.10.6"
/* This is the numeric version of the libcurl version number, meant for easier
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
diff --git a/src/version.h b/src/version.h
index 0a6231ff5..90eba9764 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.10.6-pre4"
+#define CURL_VERSION "7.10.6"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "