diff options
author | dgp <dgp@users.sourceforge.net> | 2012-01-17 14:32:34 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-01-17 14:32:34 (GMT) |
commit | 6cd986d9ff37f90c342c96d2c86a8ce77119852f (patch) | |
tree | ac108c8116e83deb74e864a58bea07229d4dd59f | |
parent | d18fb9089e240310aa9bbf393a7feec2718aa6f3 (diff) | |
parent | bbed95eccee9f7f5940bf4465a16ec6e6efbb84a (diff) | |
download | tcl-6cd986d9ff37f90c342c96d2c86a8ce77119852f.zip tcl-6cd986d9ff37f90c342c96d2c86a8ce77119852f.tar.gz tcl-6cd986d9ff37f90c342c96d2c86a8ce77119852f.tar.bz2 |
Bump to version 2.7.8
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | library/http/http.tcl | 2 | ||||
-rw-r--r-- | library/http/pkgIndex.tcl | 2 | ||||
-rw-r--r-- | unix/Makefile.in | 4 | ||||
-rw-r--r-- | win/Makefile.in | 4 |
5 files changed, 13 insertions, 6 deletions
@@ -1,3 +1,10 @@ +2012-01-17 Don Porter <dgp@users.sourceforge.net> + + * library/http/http.tcl: Bump to version 2.7.8 + * library/http/pkgIndex.tcl: + * unix/Makefile.in: + * win/Makefile.in: + 2012-01-13 Donal K. Fellows <dkf@users.sf.net> * library/http/http.tcl (http::Connect): [Bug 3472316]: Ensure that we diff --git a/library/http/http.tcl b/library/http/http.tcl index e7224a2..f8ea55f 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -11,7 +11,7 @@ package require Tcl 8.4 # Keep this in sync with pkgIndex.tcl and with the install directories in # Makefiles -package provide http 2.7.7 +package provide http 2.7.8 namespace eval http { # Allow resourcing to not clobber existing data diff --git a/library/http/pkgIndex.tcl b/library/http/pkgIndex.tcl index 168d628..43b5571 100644 --- a/library/http/pkgIndex.tcl +++ b/library/http/pkgIndex.tcl @@ -1,4 +1,4 @@ # Tcl package index file, version 1.1 if {![package vsatisfies [package provide Tcl] 8.4]} {return} -package ifneeded http 2.7.7 [list tclPkgSetup $dir http 2.7.7 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}] +package ifneeded http 2.7.8 [list tclPkgSetup $dir http 2.7.8 {{http.tcl source {::http::config ::http::formatQuery ::http::geturl ::http::reset ::http::wait ::http::register ::http::unregister ::http::mapReply}}}] diff --git a/unix/Makefile.in b/unix/Makefile.in index 77b3256..0b6a114 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -773,8 +773,8 @@ install-libraries: libraries $(INSTALL_TZDATA) install-msgs do \ $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/http1.0; \ done; - @echo "Installing package http 2.7.7 as a Tcl Module"; - @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl "$(SCRIPT_INSTALL_DIR)"/../tcl8/8.4/http-2.7.7.tm; + @echo "Installing package http 2.7.8 as a Tcl Module"; + @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl "$(SCRIPT_INSTALL_DIR)"/../tcl8/8.4/http-2.7.8.tm; @echo "Installing library opt0.4 directory"; @for i in $(TOP_DIR)/library/opt/*.tcl ; \ do \ diff --git a/win/Makefile.in b/win/Makefile.in index fce519c..b3df47f 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -637,8 +637,8 @@ install-libraries: libraries install-tzdata install-msgs do \ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/http1.0"; \ done; - @echo "Installing package http 2.7.7 as a Tcl Module"; - @$(COPY) $(ROOT_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.4/http-2.7.7.tm; + @echo "Installing package http 2.7.8 as a Tcl Module"; + @$(COPY) $(ROOT_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.4/http-2.7.8.tm; @echo "Installing library opt0.4 directory"; @for j in $(ROOT_DIR)/library/opt/*.tcl; \ do \ |