diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | generic/tcl.h | 4 | ||||
-rw-r--r-- | library/init.tcl | 4 |
3 files changed, 5 insertions, 4 deletions
@@ -2,6 +2,7 @@ * README: Bump version number to 8.5a6 * generic/tcl.h: + * library init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: diff --git a/generic/tcl.h b/generic/tcl.h index a0b51de..af6784c 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.221 2006/10/23 19:42:18 dgp Exp $ + * RCS: @(#) $Id: tcl.h,v 1.222 2006/10/23 20:26:11 dgp Exp $ */ #ifndef _TCL @@ -39,7 +39,7 @@ extern "C" { * When version numbers change here, must also go into the following files and * update the version numbers: * - * library/init.tcl (only if Major.minor changes, not patchlevel) 1 LOC + * library/init.tcl (1 LOC patch) * unix/configure.in (2 LOC Major, 2 LOC minor, 1 LOC patch) * win/configure.in (as above) * win/tcl.m4 (not patchlevel) diff --git a/library/init.tcl b/library/init.tcl index e5a86be..815965c 100644 --- a/library/init.tcl +++ b/library/init.tcl @@ -3,7 +3,7 @@ # Default system startup file for Tcl-based applications. Defines # "unknown" procedure and auto-load facilities. # -# RCS: @(#) $Id: init.tcl,v 1.86 2006/09/22 18:13:29 andreas_kupries Exp $ +# RCS: @(#) $Id: init.tcl,v 1.87 2006/10/23 20:26:11 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1996 Sun Microsystems, Inc. @@ -17,7 +17,7 @@ if {[info commands package] == ""} { error "version mismatch: library\nscripts expect Tcl version 7.5b1 or later but the loaded version is\nonly [info patchlevel]" } -package require -exact Tcl 8.5a5 +package require -exact Tcl 8.5a6 # Compute the auto path to use in this interpreter. # The values on the path come from several locations: |