Skip to content

Commit 9596a57

Browse files
author
jan.nijtmans
committed
version -> 9.0.2
1 parent 27a43dc commit 9596a57

File tree

9 files changed

+24
-10
lines changed

9 files changed

+24
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# README: Tk
22

3-
This is the **Tk 9.0.1** source distribution.
3+
This is the **Tk 9.0.2** source distribution.
44

55
You can get any source release of Tk from [our distribution
66
site](https://sourceforge.net/projects/tcl/files/Tcl/).

changes.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ changes to the Tk source code at
44

55
> [Tk Source Code](https://core.tcl-lang.org/tk/)
66
7+
Release Tk 9.0.2 arises from the check-in with tag `core-9-0-2`.
8+
9+
Tk 9.0.2 continues the Tk 9.0 series of releases. The Tk 9.0 series
10+
does not support Tcl 8.6. The Tk 9.0 series extends the Tcl 9.0 series.
11+
To make use of Tk 9.0.2, first a Tcl 9.0 release must be present.
12+
As new Tk features are developed, expect them to appear in Tk 9, but not
13+
necessarily in Tk 8.
14+
15+
Tk patch releases have the primary purpose of delivering bug fixes
16+
to the userbase.
17+
18+
# Bug fixes
19+
- [inaccurate scrollbar error-message](https://core.tcl-lang.org/tk/tktview/f88118)
20+
721
Release Tk 9.0.1 arises from the check-in with tag `core-9-0-1`.
822

923
Tk 9.0.1 continues the Tk 9.0 series of releases. The Tk 9.0 series

generic/tk.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ extern "C" {
7070
#if TK_MAJOR_VERSION == 9
7171
# define TK_MINOR_VERSION 0
7272
# define TK_RELEASE_LEVEL TCL_FINAL_RELEASE
73-
# define TK_RELEASE_SERIAL 1
73+
# define TK_RELEASE_SERIAL 2
7474

7575
# define TK_VERSION "9.0"
76-
# define TK_PATCH_LEVEL "9.0.1"
76+
# define TK_PATCH_LEVEL "9.0.2"
7777
#endif /* TK_MAJOR_VERSION */
7878

7979
/*

library/tk.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# this file, and for a DISCLAIMER OF ALL WARRANTIES.
1212

1313
# Verify that we have Tk binary and script components from the same release
14-
package require -exact tk 9.0.1
14+
package require -exact tk 9.0.2
1515

1616
# Create a ::tk namespace
1717
namespace eval ::tk {

unix/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2607,7 +2607,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
26072607
TK_VERSION=9.0
26082608
TK_MAJOR_VERSION=9
26092609
TK_MINOR_VERSION=0
2610-
TK_PATCH_LEVEL=".1"
2610+
TK_PATCH_LEVEL=".2"
26112611
VERSION=${TK_VERSION}
26122612
LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv"
26132613

unix/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ m4_ifdef([SC_USE_CONFIG_HEADERS], [
2626
TK_VERSION=9.0
2727
TK_MAJOR_VERSION=9
2828
TK_MINOR_VERSION=0
29-
TK_PATCH_LEVEL=".1"
29+
TK_PATCH_LEVEL=".2"
3030
VERSION=${TK_VERSION}
3131
LOCALES="cs da de el en en_gb eo es fr hu it nl pl pt ru sv"
3232

unix/tk.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
Name: tk
66
Summary: Tk graphical toolkit for the Tcl scripting language.
7-
Version: 9.0.1
7+
Version: 9.0.2
88
Release: 2
99
License: BSD
1010
Group: Development/Languages
11-
Source: http://prdownloads.sourceforge.net/tcl/tk%{version}-src.tar.gz
11+
Source: https://prdownloads.sourceforge.net/tcl/tk%{version}-src.tar.gz
1212
URL: https://www.tcl-lang.org/
1313
Buildroot: /var/tmp/%{name}%{version}
1414
Buildrequires: XFree86-devel tcl >= 8.7.0

win/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2410,7 +2410,7 @@ SHELL=/bin/sh
24102410
TK_VERSION=9.0
24112411
TK_MAJOR_VERSION=9
24122412
TK_MINOR_VERSION=0
2413-
TK_PATCH_LEVEL=".1"
2413+
TK_PATCH_LEVEL=".2"
24142414
VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION
24152415

24162416
#------------------------------------------------------------------------

win/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ SHELL=/bin/sh
1515
TK_VERSION=9.0
1616
TK_MAJOR_VERSION=9
1717
TK_MINOR_VERSION=0
18-
TK_PATCH_LEVEL=".1"
18+
TK_PATCH_LEVEL=".2"
1919
VER=$TK_MAJOR_VERSION$TK_MINOR_VERSION
2020

2121
#------------------------------------------------------------------------

0 commit comments

Comments
 (0)