diff options
Diffstat (limited to 'library')
-rw-r--r-- | library/http/http.tcl | 3 | ||||
-rw-r--r-- | library/msgcat/msgcat.tcl | 4 | ||||
-rw-r--r-- | library/opt/optparse.tcl | 4 | ||||
-rw-r--r-- | library/tcltest/tcltest.tcl | 5 |
4 files changed, 12 insertions, 4 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index 3cc0640..ed64ac9 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.41 2002/02/05 17:08:04 dgp Exp $ +# RCS: @(#) $Id: http.tcl,v 1.42 2002/08/20 15:33:32 dgp Exp $ # Rough version history: # 1.0 Old http_get interface @@ -24,6 +24,7 @@ package require Tcl 8.2 # keep this in sync with pkgIndex.tcl +# and with the install directories in Makefiles package provide http 2.4.2 namespace eval http { diff --git a/library/msgcat/msgcat.tcl b/library/msgcat/msgcat.tcl index 771511f..13bf10d 100644 --- a/library/msgcat/msgcat.tcl +++ b/library/msgcat/msgcat.tcl @@ -10,9 +10,11 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: msgcat.tcl,v 1.16 2002/07/17 19:14:52 drh Exp $ +# RCS: @(#) $Id: msgcat.tcl,v 1.17 2002/08/20 15:33:32 dgp Exp $ package require Tcl 8.2 +# When the version number changes, be sure to update the pkgIndex.tcl file, +# and the installation directory in the Makefiles. package provide msgcat 1.3 namespace eval msgcat { diff --git a/library/opt/optparse.tcl b/library/opt/optparse.tcl index e710008..b329190 100644 --- a/library/opt/optparse.tcl +++ b/library/opt/optparse.tcl @@ -8,9 +8,11 @@ # on it. If your code does rely on this package you # may directly incorporate this code into your application. # -# RCS: @(#) $Id: optparse.tcl,v 1.6 2001/08/09 01:06:42 dgp Exp $ +# RCS: @(#) $Id: optparse.tcl,v 1.7 2002/08/20 15:33:32 dgp Exp $ package require Tcl 8 +# When this version number changes, update the pkgIndex.tcl file +# and the install directory in the Makefiles. package provide opt 0.4.3 namespace eval ::tcl { diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 9f4b2dc..6bd2a5b 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -16,10 +16,13 @@ # Contributions from Don Porter, NIST, 2002. (not subject to US copyright) # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.72 2002/08/05 22:36:00 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.73 2002/08/20 15:33:33 dgp Exp $ package require Tcl 8.3 ;# uses [glob -directory] namespace eval tcltest { + + # When the version number changes, be sure to update the pkgIndex.tcl file, + # and the install directory in the Makefiles. variable Version 2.2 # Compatibility support for dumb variables defined in tcltest 1 |