summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorredman <redman>1999-08-10 23:16:41 (GMT)
committerredman <redman>1999-08-10 23:16:41 (GMT)
commit98f373adc4894bd5ac1bc0cef85afba791838cef (patch)
tree48f4932823ca4357678dc4c67987ce6c7de0ef67
parent80e02c2eaf7014febef4e33647fe44f4c09ab3a4 (diff)
downloadtk-98f373adc4894bd5ac1bc0cef85afba791838cef.zip
tk-98f373adc4894bd5ac1bc0cef85afba791838cef.tar.gz
tk-98f373adc4894bd5ac1bc0cef85afba791838cef.tar.bz2
Change version numbers to 8.2.0
-rw-r--r--README4
-rw-r--r--generic/tk.h8
-rw-r--r--unix/configure.in4
-rw-r--r--win/configure.in4
4 files changed, 10 insertions, 10 deletions
diff --git a/README b/README
index 4ef603c..4972d97 100644
--- a/README
+++ b/README
@@ -4,14 +4,14 @@ README: Tk
service to the Tcl community by Scriptics Corporation.
http://www.scriptics.com/
-RCS: @(#) $Id: README,v 1.18 1999/07/22 21:51:24 redman Exp $
+RCS: @(#) $Id: README,v 1.19 1999/08/10 23:16:41 redman Exp $
1. Introduction
---------------
This directory contains the sources and documentation for Tk, an X11
toolkit implemented with the Tcl scripting language. The information
-here corresponds to release 8.2b2, which is the first beta for Tk 8.2.
+here corresponds to release 8.2.0, which is the first beta for Tk 8.2.
For details on features, incompatibilities, and potential problems with
this release, see the Tcl/Tk 8.2 Web page at
diff --git a/generic/tk.h b/generic/tk.h
index 9234923..8b89675 100644
--- a/generic/tk.h
+++ b/generic/tk.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tk.h,v 1.29 1999/07/22 21:51:25 redman Exp $
+ * RCS: @(#) $Id: tk.h,v 1.30 1999/08/10 23:16:42 redman Exp $
*/
#ifndef _TK
@@ -45,11 +45,11 @@ extern "C" {
#define TK_MAJOR_VERSION 8
#define TK_MINOR_VERSION 2
-#define TK_RELEASE_LEVEL TCL_BETA_RELEASE
-#define TK_RELEASE_SERIAL 2
+#define TK_RELEASE_LEVEL TCL_FINAL_RELEASE
+#define TK_RELEASE_SERIAL 0
#define TK_VERSION "8.2"
-#define TK_PATCH_LEVEL "8.2b2"
+#define TK_PATCH_LEVEL "8.2.0"
/*
* The following definitions set up the proper options for Macintosh
diff --git a/unix/configure.in b/unix/configure.in
index c57afd9..0513f54 100644
--- a/unix/configure.in
+++ b/unix/configure.in
@@ -3,12 +3,12 @@ dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tk installation
dnl to configure the system for the local environment.
AC_INIT(../generic/tk.h)
-# RCS: @(#) $Id: configure.in,v 1.40 1999/08/04 01:00:37 redman Exp $
+# RCS: @(#) $Id: configure.in,v 1.41 1999/08/10 23:16:42 redman Exp $
TK_VERSION=8.2
TK_MAJOR_VERSION=8
TK_MINOR_VERSION=2
-TK_PATCH_LEVEL="b2"
+TK_PATCH_LEVEL=".0"
VERSION=${TK_VERSION}
if test "${prefix}" = "NONE"; then
diff --git a/win/configure.in b/win/configure.in
index b21796a..fe69ed2 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -2,14 +2,14 @@
# generate the file "configure", which is run during Tk installation
# to configure the system for the local environment.
#
-# RCS: @(#) $Id: configure.in,v 1.7 1999/08/04 01:00:44 redman Exp $
+# RCS: @(#) $Id: configure.in,v 1.8 1999/08/10 23:16:42 redman Exp $
AC_INIT(../generic/tk.h)
TK_VERSION=8.2
TK_MAJOR_VERSION=8
TK_MINOR_VERSION=2
-TK_PATCH_LEVEL=b2
+TK_PATCH_LEVEL=".0"
VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION
#--------------------------------------------------------------------