summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2008-11-01 08:05:49 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2008-11-01 08:05:49 (GMT)
commitfee39e2a56df0c5d1f3bc91f5189f6d1e3b6e573 (patch)
treea24aa2ba02cf837da8d44afa943fc73dd7b8a3bf
parentca1d8afc2cf45b6fd42204a7ed0e295991666205 (diff)
downloadtcl-fee39e2a56df0c5d1f3bc91f5189f6d1e3b6e573.zip
tcl-fee39e2a56df0c5d1f3bc91f5189f6d1e3b6e573.tar.gz
tcl-fee39e2a56df0c5d1f3bc91f5189f6d1e3b6e573.tar.bz2
Version bump of TclOO
-rw-r--r--ChangeLog4
-rw-r--r--generic/tclOO.h4
-rw-r--r--tests/oo.test4
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6880855..425fdd3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-01 Donal K. Fellows <dkf@users.sf.net>
+
+ * generic/tclOO.h (TCLOO_VERSION): Bump version of TclOO.
+
2008-10-31 Donal K. Fellows <dkf@users.sf.net>
* generic/tclOOBasic.c (TclOONRUpcatch): Reworked the code that does
diff --git a/generic/tclOO.h b/generic/tclOO.h
index b16938b..7bcb4a7 100644
--- a/generic/tclOO.h
+++ b/generic/tclOO.h
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOO.h,v 1.6 2008/09/26 12:54:00 dkf Exp $
+ * RCS: @(#) $Id: tclOO.h,v 1.7 2008/11/01 08:05:49 dkf Exp $
*/
#ifndef TCLOO_H_INCLUDED
@@ -28,7 +28,7 @@
* standalone TclOO version matches...
*/
-#define TCLOO_VERSION "0.6"
+#define TCLOO_VERSION "0.6.1"
#define TCLOO_PATCHLEVEL TCLOO_VERSION
/*
diff --git a/tests/oo.test b/tests/oo.test
index ff2f79f..5c105b8 100644
--- a/tests/oo.test
+++ b/tests/oo.test
@@ -7,9 +7,9 @@
# See the file "license.terms" for information on usage and redistribution of
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: oo.test,v 1.16 2008/10/31 22:08:32 dkf Exp $
+# RCS: @(#) $Id: oo.test,v 1.17 2008/11/01 08:05:49 dkf Exp $
-package require TclOO 0.4 ;# Must match value in configure.in
+package require TclOO 0.6.1 ;# Must match value in generic/tclOO.h
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
namespace import -force ::tcltest::*