diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | library/reg/pkgIndex.tcl | 4 | ||||
-rw-r--r-- | win/tclWinReg.c | 4 |
3 files changed, 5 insertions, 4 deletions
@@ -9,6 +9,7 @@ * win/tclWinReg.c (OpenSubKey): Fixed bug 775976 which causes the registry set command to fail when built with VC7. + * library/reg/pkgIndex.tcl: Incremented the version to 1.1.2. 2003-07-21 Mo DeJong <mdejong@users.sourceforge.net> diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index 230d120..ad9a54b 100755 --- a/library/reg/pkgIndex.tcl +++ b/library/reg/pkgIndex.tcl @@ -1,8 +1,8 @@ if {![package vsatisfies [package provide Tcl] 8]} {return} if {[info exists ::tcl_platform(debug)]} { - package ifneeded registry 1.1.1 \ + package ifneeded registry 1.1.2 \ [list load [file join $dir tclreg11g.dll] registry] } else { - package ifneeded registry 1.1.1 \ + package ifneeded registry 1.1.2 \ [list load [file join $dir tclreg11.dll] registry] } diff --git a/win/tclWinReg.c b/win/tclWinReg.c index fbcab54..5951c85 100644 --- a/win/tclWinReg.c +++ b/win/tclWinReg.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinReg.c,v 1.22 2003/07/22 23:41:51 patthoyts Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.23 2003/07/23 20:55:14 patthoyts Exp $ */ #include <tclPort.h> @@ -228,7 +228,7 @@ Registry_Init( } Tcl_CreateObjCommand(interp, "registry", RegistryObjCmd, NULL, NULL); - return Tcl_PkgProvide(interp, "registry", "1.1.1"); + return Tcl_PkgProvide(interp, "registry", "1.1.2"); } /* |