diff options
author | dgp <dgp@users.sourceforge.net> | 2007-05-15 16:08:20 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-05-15 16:08:20 (GMT) |
commit | 5d1ba673ebd2c1d6ba7dd0d3d6095c27ba2838f9 (patch) | |
tree | 5f43256382ff6af7fa3ee7a9d2f713a8bf95933f | |
parent | 61db605bbda1d3cf0d073bdd573330789b6fc929 (diff) | |
download | tcl-5d1ba673ebd2c1d6ba7dd0d3d6095c27ba2838f9.zip tcl-5d1ba673ebd2c1d6ba7dd0d3d6095c27ba2838f9.tar.gz tcl-5d1ba673ebd2c1d6ba7dd0d3d6095c27ba2838f9.tar.bz2 |
* changes: updates for 8.4.15 release.
* win/tclWinReg.c: Bump to registry 1.1.5 to account
* library/reg/pkgIndex.tcl: for [1682211] bug fix.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | changes | 29 | ||||
-rwxr-xr-x | library/reg/pkgIndex.tcl | 4 | ||||
-rw-r--r-- | win/tclWinReg.c | 4 |
4 files changed, 39 insertions, 5 deletions
@@ -1,3 +1,10 @@ +2007-05-15 Don Porter <dgp@users.sourceforge.net> + + * changes: updates for 8.4.15 release. + + * win/tclWinReg.c: Bump to registry 1.1.5 to account + * library/reg/pkgIndex.tcl: for [1682211] bug fix. + 2007-05-10 Don Porter <dgp@users.sourceforge.net> * generic/tclInt.h: TclFinalizeThreadAlloc() is always defined, @@ -1,6 +1,6 @@ Recent user-visible changes to Tcl: -RCS: @(#) $Id: changes,v 1.79.2.48 2006/10/16 18:52:29 dgp Exp $ +RCS: @(#) $Id: changes,v 1.79.2.49 2007/05/15 16:08:21 dgp Exp $ 1. No more [command1] [command2] construct for grouping multiple commands on a single command line. @@ -6420,3 +6420,30 @@ URL validity checking against RFC 2986 (hobbs) => http 2.5.3 --- Released 8.4.14, October 19, 2006 --- See ChangeLog for details --- + +2006-10-31 (platform support)[1582769] Fix build with VC2003 (thoyts) + +2006-11-07 (bug fix)[1586470] [file copy] on afs (kupries,dionizio) + +2006-11-26 (platform support)[1230558] --enable-64bit on more systems (steffen) + +2006-11-27 (bug fix)[1602208] use > 32 async sockets on 64bit system (fontaine) + +2007-01-30 (enhancement) new target: `make install-private-headers` (hobbs) + +2007-02-12 (bug fix)[1516109] escape encodings crossing chan buffers (dejong) + +2007-03-01 (bug fix)[1671138] compiled [foreach {} x {}] hangs (fellows) + +2007-03-10 (bug fix)[1675116] list shimmer crash in [lsort] (fellows) + +2007-03-13 (bug fix)[1671087] list shimmer crash in [foreach] (porter) + +2007-03-13 (bug fix)[1669489] list shimmer crash in [array set] (porter) + +2007-03-17 (bug fix)[1682211] buffer overflow in [registry keys] (kenny) +=> registry 1.1.5 + +2007-04-29 (bug fix) fts_open() crash on 64bit Darwin 8 or earlier (steffen) + +--- Released 8.4.15, May 25, 2007 --- See ChangeLog for details --- diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl index 61c1d94..3aed06f 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.4 \ + package ifneeded registry 1.1.5 \ [list load [file join $dir tclreg11g.dll] registry] } else { - package ifneeded registry 1.1.4 \ + package ifneeded registry 1.1.5 \ [list load [file join $dir tclreg11.dll] registry] } diff --git a/win/tclWinReg.c b/win/tclWinReg.c index fb6d2be..cdce1aa 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.6 2007/03/17 22:41:05 kennykb Exp $ + * RCS: @(#) $Id: tclWinReg.c,v 1.21.2.7 2007/05/15 16:08:22 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.4"); + return Tcl_PkgProvide(interp, "registry", "1.1.5"); } /* |