summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README12
-rw-r--r--generic/tcl.h6
-rw-r--r--unix/configure.in4
3 files changed, 11 insertions, 11 deletions
diff --git a/README b/README
index a81fe72..f29ca50 100644
--- a/README
+++ b/README
@@ -1,13 +1,13 @@
Tcl
-RCS: @(#) $Id: README,v 1.10 1998/09/14 18:39:43 stanton Exp $
+RCS: @(#) $Id: README,v 1.11 1998/10/13 19:03:52 escoffon Exp $
1. Introduction
---------------
This directory and its descendants contain the sources and documentation
for Tcl, an embeddable scripting language. The information here
-corresponds to release 8.0.3, which is the third patch update for Tcl
+corresponds to release 8.0.4, which is the fourth patch update for Tcl
8.0. This patch provides compatibility with [incr Tcl] 3.0.
Tcl 8.0 is a major new release that replaces the core of the
interpreter with an on-the-fly bytecode compiler to improve execution
@@ -87,7 +87,7 @@ Before trying to compile Tcl you should do the following things:
without changing any features, so you should normally use the
latest patch release for the version of Tcl that you want.
Patch releases are available in two forms. A file like
- tcl8.0.3.tar.Z is a complete release for patch level 3 of Tcl
+ tcl8.0.4.tar.Z is a complete release for patch level 4 of Tcl
version 8.0. If there is a file with a higher patch level than
this release, just fetch the file with the highest patch level
and use it.
@@ -352,7 +352,7 @@ and Data Kinetics (education@dkl.com).
You can test the current version of Tcl by examining the
tcl_version and tcl_patchLevel variables. The tcl_patchLevel
-variable follows the naming rules outlined below (e.g., 8.0.3).
+variable follows the naming rules outlined below (e.g., 8.0.4).
The tcl_version just has the major.minor numbers in it (e.g., 8.0)
Each Tcl release is identified by two numbers separated by a dot, e.g.
@@ -396,5 +396,5 @@ compatible with the base release from which it is derived (e.g. Tcl
7.6), and you should normally use the highest available patch release.
As of 8.0.3, the patch releases use a second . instead of 'p'. So, the
-8.0 release went to 8.0p1, 8.0p2, and 8.0.3. The alphas and betas will
-still use the 'a' and 'b' letters in their tcl_patchLevel.
+8.0 release went to 8.0p1, 8.0p2, 8.0.3, and 8.0.4. The alphas and betas
+will still use the 'a' and 'b' letters in their tcl_patchLevel.
diff --git a/generic/tcl.h b/generic/tcl.h
index 492793a..c2eef66 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -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: tcl.h,v 1.26 1998/09/29 18:22:39 rjohnson Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.27 1998/10/13 19:03:53 escoffon Exp $
*/
#ifndef _TCL
@@ -38,10 +38,10 @@
#define TCL_MAJOR_VERSION 8
#define TCL_MINOR_VERSION 0
#define TCL_RELEASE_LEVEL 2
-#define TCL_RELEASE_SERIAL 3
+#define TCL_RELEASE_SERIAL 4
#define TCL_VERSION "8.0"
-#define TCL_PATCH_LEVEL "8.0.3"
+#define TCL_PATCH_LEVEL "8.0.4"
/*
* The following definitions set up the proper options for Windows
diff --git a/unix/configure.in b/unix/configure.in
index 86d189b..f45c859 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -2,12 +2,12 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
AC_INIT(../generic/tcl.h)
-# RCS: @(#) $Id: configure.in,v 1.19 1998/09/14 18:40:15 stanton Exp $
+# RCS: @(#) $Id: configure.in,v 1.20 1998/10/13 19:03:53 escoffon Exp $
TCL_VERSION=8.0
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=0
-TCL_PATCH_LEVEL=".3"
+TCL_PATCH_LEVEL=".4"
VERSION=${TCL_VERSION}
if test "${prefix}" = "NONE"; then