diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-30 12:38:30 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-03-30 12:38:30 (GMT) |
commit | 7e552e85798f37d8c50d6a4720359422e664b63d (patch) | |
tree | 62cda2c932b5b0d3803083432ec8e8600fdcd7ce | |
parent | 289662f4dd776fb4e9410efcc9a5512714b83927 (diff) | |
download | tcl-7e552e85798f37d8c50d6a4720359422e664b63d.zip tcl-7e552e85798f37d8c50d6a4720359422e664b63d.tar.gz tcl-7e552e85798f37d8c50d6a4720359422e664b63d.tar.bz2 |
Bump version of registry package to 1.3.
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | library/reg/pkgIndex.tcl | 4 | ||||
-rw-r--r-- | win/tclWinReg.c | 4 |
3 files changed, 6 insertions, 5 deletions
@@ -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"); } /* |