summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2007-05-15 16:08:20 (GMT)
committerdgp <dgp@noemail.net>2007-05-15 16:08:20 (GMT)
commit688ff0ba55abef2eb7578004de3c56cdce008d97 (patch)
tree5f43256382ff6af7fa3ee7a9d2f713a8bf95933f
parent5273a1a2abf74122680e8bd9fde55b60d41e85a9 (diff)
downloadtcl-688ff0ba55abef2eb7578004de3c56cdce008d97.zip
tcl-688ff0ba55abef2eb7578004de3c56cdce008d97.tar.gz
tcl-688ff0ba55abef2eb7578004de3c56cdce008d97.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. FossilOrigin-Name: e7c3622b34ca10b379a2484066386e17b3ce0336
-rw-r--r--ChangeLog7
-rw-r--r--changes29
-rwxr-xr-xlibrary/reg/pkgIndex.tcl4
-rw-r--r--win/tclWinReg.c4
4 files changed, 39 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d940786..8379c96 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
diff --git a/changes b/changes
index 0f66146..34e0745 100644
--- a/changes
+++ b/changes
@@ -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");
}
/*