summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rwxr-xr-xlibrary/reg/pkgIndex.tcl4
-rw-r--r--win/tclWinReg.c4
3 files changed, 6 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 8614245..1fd071c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,7 +4,8 @@
* win/tclWinReg.c: [Patch 2960976]: Apply patch from Damon Courtney to
* tests/registry.test: allow the registry command to be told to work
- with both 32-bit and 64-bit registries.
+ with both 32-bit and 64-bit registries. Bump
+ version of registry package to 1.3.
2010-03-29 Jan Nijtmans <nijtmans@users.sf.net>
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl
index d2ed72f..c24e700 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.2.1 \
+ package ifneeded registry 1.3 \
[list load [file join $dir tclreg12g.dll] registry]
} else {
- package ifneeded registry 1.2.1 \
+ package ifneeded registry 1.3 \
[list load [file join $dir tclreg12.dll] registry]
}
diff --git a/win/tclWinReg.c b/win/tclWinReg.c
index d5e1a28..d7eeae6 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.51 2010/03/30 12:33:47 dkf Exp $
+ * RCS: @(#) $Id: tclWinReg.c,v 1.52 2010/03/30 12:38:30 dkf Exp $
*/
#undef STATIC_BUILD
@@ -252,7 +252,7 @@ Registry_Init(
cmd = Tcl_CreateObjCommand(interp, "registry", RegistryObjCmd,
interp, DeleteCmd);
Tcl_SetAssocData(interp, REGISTRY_ASSOC_KEY, NULL, cmd);
- return Tcl_PkgProvide(interp, "registry", "1.2.1");
+ return Tcl_PkgProvide(interp, "registry", "1.3");
}
/*