summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xlibrary/reg/pkgIndex.tcl4
-rw-r--r--win/tclWinReg.c4
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index eddae33..4c2d510 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-04-05 Don Porter <dgp@users.sourceforge.net>
+ * library/reg/pkgIndex.tcl: Long overlooked bump to registry package
+ * win/tclWinReg.c: version 1.1.4 (should have been done
+ for the Tcl 8.4.8 release!)
+
* library/dde/pkgIndex.tcl: Long overlooked bump to dde package
* win/tclWinDde.c: version 1.2.4 (should have been done
for the Tcl 8.4.8 release!)
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl
index 55775f2..61c1d94 100755
--- a/library/reg/pkgIndex.tcl
+++ b/library/reg/pkgIndex.tcl
@@ -1,9 +1,9 @@
if {![package vsatisfies [package provide Tcl] 8]} {return}
if {[string compare $::tcl_platform(platform) windows]} {return}
if {[info exists ::tcl_platform(debug)]} {
- package ifneeded registry 1.1.3 \
+ package ifneeded registry 1.1.4 \
[list load [file join $dir tclreg11g.dll] registry]
} else {
- package ifneeded registry 1.1.3 \
+ package ifneeded registry 1.1.4 \
[list load [file join $dir tclreg11.dll] registry]
}
diff --git a/win/tclWinReg.c b/win/tclWinReg.c
index 0f02db0..ccd715a 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.21.2.4 2004/09/01 17:26:04 hobbs Exp $
+ * RCS: @(#) $Id: tclWinReg.c,v 1.21.2.5 2006/04/05 16:22:18 dgp Exp $
*/
#include <tclPort.h>
@@ -228,7 +228,7 @@ Registry_Init(
}
Tcl_CreateObjCommand(interp, "registry", RegistryObjCmd, NULL, NULL);
- return Tcl_PkgProvide(interp, "registry", "1.1.3");
+ return Tcl_PkgProvide(interp, "registry", "1.1.4");
}
/*