summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog10
-rw-r--r--library/dde/pkgIndex.tcl4
-rw-r--r--library/opt/pkgIndex.tcl2
-rwxr-xr-xlibrary/reg/pkgIndex.tcl4
-rw-r--r--win/tclWinDde.c4
-rw-r--r--win/tclWinReg.c4
6 files changed, 19 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d847b1..1d9b1a8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2003-03-03 Don Porter <dgp@users.sourceforge.net>
+
+ * library/dde/pkgIndex.tcl: dde bumped to version 1.2.1 for
+ * win/tclWinDde.c: bundled release with Tcl 8.4.2
+
+ * library/reg/pkgIndex.tcl: registry bumped to version 1.1.1 for
+ * win/tclWinReg.c: bundled release with Tcl 8.4.2
+
+ * library/opt/pkgIndex.tcl: updated package index to version 0.4.4
+
2003-02-28 Jeff Hobbs <jeffh@ActiveState.com>
* win/configure:
diff --git a/library/dde/pkgIndex.tcl b/library/dde/pkgIndex.tcl
index 9efa425..b651038 100644
--- a/library/dde/pkgIndex.tcl
+++ b/library/dde/pkgIndex.tcl
@@ -1,6 +1,6 @@
if {![package vsatisfies [package provide Tcl] 8]} {return}
if {[info exists tcl_platform(debug)]} {
- package ifneeded dde 1.2 [list load [file join $dir tcldde12g.dll] dde]
+ package ifneeded dde 1.2.1 [list load [file join $dir tcldde12g.dll] dde]
} else {
- package ifneeded dde 1.2 [list load [file join $dir tcldde12.dll] dde]
+ package ifneeded dde 1.2.1 [list load [file join $dir tcldde12.dll] dde]
}
diff --git a/library/opt/pkgIndex.tcl b/library/opt/pkgIndex.tcl
index 02c289c..252cab5 100644
--- a/library/opt/pkgIndex.tcl
+++ b/library/opt/pkgIndex.tcl
@@ -9,4 +9,4 @@
# full path name of this file's directory.
if {![package vsatisfies [package provide Tcl] 8]} {return}
-package ifneeded opt 0.4.3 [list source [file join $dir optparse.tcl]]
+package ifneeded opt 0.4.4 [list source [file join $dir optparse.tcl]]
diff --git a/library/reg/pkgIndex.tcl b/library/reg/pkgIndex.tcl
index 70411e9..d4bd27b 100755
--- a/library/reg/pkgIndex.tcl
+++ b/library/reg/pkgIndex.tcl
@@ -1,8 +1,8 @@
if {![package vsatisfies [package provide Tcl] 8]} {return}
if {[info exists tcl_platform(debug)]} {
- package ifneeded registry 1.1 \
+ package ifneeded registry 1.1.1 \
[list load [file join $dir tclreg11g.dll] registry]
} else {
- package ifneeded registry 1.1 \
+ package ifneeded registry 1.1.1 \
[list load [file join $dir tclreg11.dll] registry]
}
diff --git a/win/tclWinDde.c b/win/tclWinDde.c
index 3cab397..8244b99 100644
--- a/win/tclWinDde.c
+++ b/win/tclWinDde.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinDde.c,v 1.12 2003/01/25 03:11:46 hobbs Exp $
+ * RCS: @(#) $Id: tclWinDde.c,v 1.13 2003/03/03 17:12:48 dgp Exp $
*/
#include "tclPort.h"
@@ -69,7 +69,7 @@ static DWORD ddeInstance; /* The application instance handle given
* to us by DdeInitialize. */
static int ddeIsServer = 0;
-#define TCL_DDE_VERSION "1.2"
+#define TCL_DDE_VERSION "1.2.1"
#define TCL_DDE_PACKAGE_NAME "dde"
#define TCL_DDE_SERVICE_NAME "TclEval"
diff --git a/win/tclWinReg.c b/win/tclWinReg.c
index ee453c7..50aa8e6 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.20 2003/01/16 19:02:00 mdejong Exp $
+ * RCS: @(#) $Id: tclWinReg.c,v 1.21 2003/03/03 17:12:49 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");
+ return Tcl_PkgProvide(interp, "registry", "1.1.1");
}
/*