summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-04-08 22:53:22 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-04-08 22:53:22 +0000
commit2a72641a0b54dd5db079fd6f797e47a5907d6b2a (patch)
treecc57e4ed84a2afc62c3a0af81c788dbbdd5a7c23
parent9c4e5dc3ee965144cc7178251dd701e6701b60ec (diff)
downloadgnurl-2a72641a0b54dd5db079fd6f797e47a5907d6b2a.tar.gz
gnurl-2a72641a0b54dd5db079fd6f797e47a5907d6b2a.tar.bz2
gnurl-2a72641a0b54dd5db079fd6f797e47a5907d6b2a.zip
7.9.6-pre4 commit
-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 3d7699bef..8c204ad1f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,28 @@
History of Changes
+Daniel (8 April 2002)
+- Michael Curtis provided new functionality for curl on some platforms. Using
+ the --environment option, curl will *set* a bunch of environment variables
+ to values. The names are the same ones as for the -w/--writeout option.
+
+ For now, this only works on the RISC OS version, as this feature relies on
+ both OS support and that it matches OS paradigms.
+
+- Jacky Lam provided a fix for getting headers-only when the reply is HTTP/1.0
+ and 304, I edited it slightly.
+
+Daniel (5 April 2002)
+- As requested by Jay Graves, the '.curlrc' file (or _curlrc as it is called
+ when used in windows), is now loaded from the current directory if the HOME
+ environment variable isn't set (or if it is too long). I also enlarged the
+ array used to store the full file path in, to 512 bytes.
+
+- Kevin Roth pointed out to me why the "19 March" change regarding -G and -I
+ was stupid and the change was reverted. Added test case 48 to verify the
+ functionality.
+
+Version 7.9.6-pre3
Daniel (4 April 2002)
- Jonatan Lander brought a patch that makes curl/curl.h compile nicely on
diff --git a/include/curl/curl.h b/include/curl/curl.h
index 296f2e99b..f803d8c6a 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -637,7 +637,7 @@ CURLcode curl_global_init(long flags);
void curl_global_cleanup(void);
/* This is the version number */
-#define LIBCURL_VERSION "7.9.6-pre2"
+#define LIBCURL_VERSION "7.9.6-pre3"
#define LIBCURL_VERSION_NUM 0x070906
/* linked-list structure for the CURLOPT_QUOTE option (and other) */
diff --git a/src/version.h b/src/version.h
index ee085e5ed..82df757c6 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,3 +1,3 @@
#define CURL_NAME "curl"
-#define CURL_VERSION "7.9.6-pre1"
+#define CURL_VERSION "7.9.6-pre3"
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "