diff options
author | dgp <dgp@users.sourceforge.net> | 2013-08-30 14:39:44 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2013-08-30 14:39:44 (GMT) |
commit | a00edb27837b94d325ad96772dd08b10f9e33aff (patch) | |
tree | 70527d60b3ca7b7780db3dbd1639bae9f98f4bf1 | |
parent | 3d9172ad682a1cfffaf9f55793a947ff05c78e57 (diff) | |
download | tk-a00edb27837b94d325ad96772dd08b10f9e33aff.zip tk-a00edb27837b94d325ad96772dd08b10f9e33aff.tar.gz tk-a00edb27837b94d325ad96772dd08b10f9e33aff.tar.bz2 |
Bump to 8.5.15 for release.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | generic/tk.h | 4 | ||||
-rw-r--r-- | library/tk.tcl | 2 | ||||
-rwxr-xr-x | unix/configure | 2 | ||||
-rw-r--r-- | unix/configure.in | 2 | ||||
-rw-r--r-- | unix/tk.spec | 2 | ||||
-rwxr-xr-x | win/configure | 2 | ||||
-rw-r--r-- | win/configure.in | 2 |
9 files changed, 23 insertions, 11 deletions
@@ -1,3 +1,15 @@ +2013-08-30 Don Porter <dgp@users.sourceforge.net> + + * generic/tk.h: Bump to 8.5.15 for release. + * library/tk.tcl: + * unix/configure.in: + * unix/tk.spec: + * win/configure.in: + * README: + + * unix/configure: autoconf-2.59 + * win/configure: + 2013-08-25 Kevin Walzer <wordtech@users.sourceforge.net> * macosx/tkMacOSXButton.c: Bug [3016181]: Crash after scrollbar @@ -1,13 +1,13 @@ README: Tk - This is the Tk 8.5.14 source distribution. + This is the Tk 8.5.15 source distribution. http://sourceforge.net/projects/tcl/files/Tcl/ You can get any source release of Tk from the URL above. 1. Introduction --------------- -This directory contains the sources and documentation for Tk, an X11 -toolkit implemented with the Tcl scripting language. +This directory contains the sources and documentation for Tk, a +cross-platform GUI toolkit implemented with the Tcl scripting language. For details on features, incompatibilities, and potential problems with this release, see the Tcl/Tk 8.5 Web page at diff --git a/generic/tk.h b/generic/tk.h index ca66ceb..6c2c7b1 100644 --- a/generic/tk.h +++ b/generic/tk.h @@ -59,10 +59,10 @@ extern "C" { #define TK_MAJOR_VERSION 8 #define TK_MINOR_VERSION 5 #define TK_RELEASE_LEVEL TCL_FINAL_RELEASE -#define TK_RELEASE_SERIAL 14 +#define TK_RELEASE_SERIAL 15 #define TK_VERSION "8.5" -#define TK_PATCH_LEVEL "8.5.14" +#define TK_PATCH_LEVEL "8.5.15" /* * A special definition used to allow this header file to be included from diff --git a/library/tk.tcl b/library/tk.tcl index 7c6bb1a..f432861 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -15,7 +15,7 @@ package require Tcl 8.5 ;# Guard against [source] in an 8.4- interp before # Insist on running with compatible version of Tcl package require Tcl 8.5.0 # Verify that we have Tk binary and script components from the same release -package require -exact Tk 8.5.14 +package require -exact Tk 8.5.15 # Create a ::tk namespace namespace eval ::tk { diff --git a/unix/configure b/unix/configure index a7d80a6..4022a1f 100755 --- a/unix/configure +++ b/unix/configure @@ -1338,7 +1338,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu TK_VERSION=8.5 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=5 -TK_PATCH_LEVEL=".14" +TK_PATCH_LEVEL=".15" VERSION=${TK_VERSION} LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv" diff --git a/unix/configure.in b/unix/configure.in index 3d1e32b..fd817aa 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -25,7 +25,7 @@ m4_ifdef([SC_USE_CONFIG_HEADERS], [ TK_VERSION=8.5 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=5 -TK_PATCH_LEVEL=".14" +TK_PATCH_LEVEL=".15" VERSION=${TK_VERSION} LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv" diff --git a/unix/tk.spec b/unix/tk.spec index 6884100..9302fd4 100644 --- a/unix/tk.spec +++ b/unix/tk.spec @@ -4,7 +4,7 @@ Name: tk Summary: Tk graphical toolkit for the Tcl scripting language. -Version: 8.5.14 +Version: 8.5.15 Release: 2 License: BSD Group: Development/Languages diff --git a/win/configure b/win/configure index 6415981..b53481f 100755 --- a/win/configure +++ b/win/configure @@ -1312,7 +1312,7 @@ SHELL=/bin/sh TK_VERSION=8.5 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=5 -TK_PATCH_LEVEL=".14" +TK_PATCH_LEVEL=".15" VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION #------------------------------------------------------------------------ diff --git a/win/configure.in b/win/configure.in index c0a9599..7eeaf97 100644 --- a/win/configure.in +++ b/win/configure.in @@ -14,7 +14,7 @@ SHELL=/bin/sh TK_VERSION=8.5 TK_MAJOR_VERSION=8 TK_MINOR_VERSION=5 -TK_PATCH_LEVEL=".14" +TK_PATCH_LEVEL=".15" VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION #------------------------------------------------------------------------ |