summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2008-08-11 21:03:40 (GMT)
committerandreas_kupries <akupries@shaw.ca>2008-08-11 21:03:40 (GMT)
commitab3517ae4d6cb7db7cd132fb1c502b9a82794859 (patch)
tree2a17dce4d0dc38fcd2bfe897c3571a7a5663bffc /ChangeLog
parent49f30082dd3c2a494c7a7bca131dbd509953c961 (diff)
downloadtcl-ab3517ae4d6cb7db7cd132fb1c502b9a82794859.zip
tcl-ab3517ae4d6cb7db7cd132fb1c502b9a82794859.tar.gz
tcl-ab3517ae4d6cb7db7cd132fb1c502b9a82794859.tar.bz2
* library/tm.tcl: Added a 'package provide' command to the
generated ifneeded scripts of Tcl Modules, for early detection of conflicts between the version specified through the file name and a 'provide' command in the module implementation, if any. Note that this change also now allows Tcl Modules to not provide a 'provide' command at all, and declaring their version only through their filename.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a68a70..f89e4e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
2008-08-11 Andreas Kupries <andreask@activestate.com>
+ * library/tm.tcl: Added a 'package provide' command to the
+ generated ifneeded scripts of Tcl Modules, for early detection of
+ conflicts between the version specified through the file name and
+ a 'provide' command in the module implementation, if any. Note
+ that this change also now allows Tcl Modules to not provide a
+ 'provide' command at all, and declaring their version only through
+ their filename.
+
* generic/tclProc.c (Tcl_ProcObjCmd): Fixed memory leak triggered
* tests/proc.test: by procbody::test::proc. See [Bug 2043636].
Added a test case demonstrating the leak before the fix. Fixed a