diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-02 04:21:16 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-02 04:21:16 (GMT) |
commit | 021e3ab3bc146a1662b08572ab28097f61139bd3 (patch) | |
tree | cee2560c84baf08e706aacc93fc82b6dc6d72377 /library | |
parent | c162f160bb001ab046c8e44a29d0ad1390f065a8 (diff) | |
download | tcl-021e3ab3bc146a1662b08572ab28097f61139bd3.zip tcl-021e3ab3bc146a1662b08572ab28097f61139bd3.tar.gz tcl-021e3ab3bc146a1662b08572ab28097f61139bd3.tar.bz2 |
Update the http package version number now as we change it, so we don't
forget to do it later when we release it.
Diffstat (limited to 'library')
-rw-r--r-- | library/http/http.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index ee968d2..5e39030 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -9,7 +9,7 @@ # See the file "license.terms" for information on usage and # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: http.tcl,v 1.34 2001/08/02 01:19:23 hobbs Exp $ +# RCS: @(#) $Id: http.tcl,v 1.35 2001/08/02 04:21:16 dgp Exp $ # Rough version history: # 1.0 Old http_get interface @@ -20,7 +20,7 @@ # This version also cleans up error cases and eliminates the # "ioerror" status in favor of raising an error -package provide http 2.3 +package provide http 2.3.1 namespace eval http { variable http @@ -28,7 +28,7 @@ namespace eval http { -accept */* -proxyhost {} -proxyport {} - -useragent {Tcl http client package 2.3} + -useragent {Tcl http client package 2.3.1} -proxyfilter http::ProxyRequired } |