Skip to content

Commit 1dc44f7

Browse files
author
jan.nijtmans
committed
version -> 3.0.2, for next release preparation
1 parent ba18b12 commit 1dc44f7

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.72 for thread 3.0.1.
3+
# Generated by GNU Autoconf 2.72 for thread 3.0.2.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2017, 2020-2023 Free Software Foundation,
@@ -601,8 +601,8 @@ MAKEFLAGS=
601601
# Identity of this package.
602602
PACKAGE_NAME='thread'
603603
PACKAGE_TARNAME='thread'
604-
PACKAGE_VERSION='3.0.1'
605-
PACKAGE_STRING='thread 3.0.1'
604+
PACKAGE_VERSION='3.0.2'
605+
PACKAGE_STRING='thread 3.0.2'
606606
PACKAGE_BUGREPORT=''
607607
PACKAGE_URL=''
608608

@@ -1330,7 +1330,7 @@ if test "$ac_init_help" = "long"; then
13301330
# Omit some internal or obsolete options to make the list less imposing.
13311331
# This message is too long to be a string in the A/UX 3.1 sh.
13321332
cat <<_ACEOF
1333-
'configure' configures thread 3.0.1 to adapt to many kinds of systems.
1333+
'configure' configures thread 3.0.2 to adapt to many kinds of systems.
13341334
13351335
Usage: $0 [OPTION]... [VAR=VALUE]...
13361336
@@ -1392,7 +1392,7 @@ fi
13921392

13931393
if test -n "$ac_init_help"; then
13941394
case $ac_init_help in
1395-
short | recursive ) echo "Configuration of thread 3.0.1:";;
1395+
short | recursive ) echo "Configuration of thread 3.0.2:";;
13961396
esac
13971397
cat <<\_ACEOF
13981398
@@ -1498,7 +1498,7 @@ fi
14981498
test -n "$ac_init_help" && exit $ac_status
14991499
if $ac_init_version; then
15001500
cat <<\_ACEOF
1501-
thread configure 3.0.1
1501+
thread configure 3.0.2
15021502
generated by GNU Autoconf 2.72
15031503
15041504
Copyright (C) 2023 Free Software Foundation, Inc.
@@ -1805,7 +1805,7 @@ cat >config.log <<_ACEOF
18051805
This file contains any messages produced by compilers while
18061806
running configure, to aid debugging if configure makes a mistake.
18071807
1808-
It was created by thread $as_me 3.0.1, which was
1808+
It was created by thread $as_me 3.0.2, which was
18091809
generated by GNU Autoconf 2.72. Invocation command line was
18101810
18111811
$ $0$ac_configure_args_raw
@@ -10024,7 +10024,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1002410024
# report actual input values of CONFIG_FILES etc. instead of their
1002510025
# values after options handling.
1002610026
ac_log="
10027-
This file was extended by thread $as_me 3.0.1, which was
10027+
This file was extended by thread $as_me 3.0.2, which was
1002810028
generated by GNU Autoconf 2.72. Invocation command line was
1002910029
1003010030
CONFIG_FILES = $CONFIG_FILES
@@ -10079,7 +10079,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1007910079
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1008010080
ac_cs_config='$ac_cs_config_escaped'
1008110081
ac_cs_version="\\
10082-
thread config.status 3.0.1
10082+
thread config.status 3.0.2
1008310083
configured by $0, generated by GNU Autoconf 2.72,
1008410084
with options \\"\$ac_cs_config\\"
1008510085

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dnl to configure the system for the local environment.
1717
# so you can encode the package version directly into the source files.
1818
#-----------------------------------------------------------------------
1919

20-
AC_INIT([thread],[3.0.1])
20+
AC_INIT([thread],[3.0.2])
2121

2222
#--------------------------------------------------------------------
2323
# Call TEA_INIT as the first TEA_ macro to set up initial vars.

doc/html/ttrace.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h1 class="doctools_title">ttrace(n) 3.0 &quot;Tcl Threading&quot;</h1>
153153
with the Tcl threading extension:</p>
154154
<pre class="doctools_example">
155155
% package require ttrace
156-
3.0.1
156+
3.0.2
157157
% set t1 [thread::create {package require ttrace; thread::wait}]
158158
tid0x1802800
159159
% ttrace::eval {proc test args {return test-[thread::id]}}

doc/ttrace.man

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ with the Tcl threading extension:
2121
[example {
2222

2323
% package require ttrace
24-
3.0.1
24+
3.0.2
2525

2626
% set t1 [thread::create {package require ttrace; thread::wait}]
2727
tid0x1802800

generic/threadCmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* files built as part of that shell. Example: basekits.
3030
*/
3131
#ifndef PACKAGE_VERSION
32-
#define PACKAGE_VERSION "3.0.1"
32+
#define PACKAGE_VERSION "3.0.2"
3333
#endif
3434

3535
/*

lib/ttrace.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ namespace eval ttrace {
7373
}
7474

7575
# Keep in sync with the thread package
76-
package provide ttrace 3.0.1
77-
package provide Ttrace 3.0.1
76+
package provide ttrace 3.0.2
77+
package provide Ttrace 3.0.2
7878

7979
# Package variables
8080
variable resolvers "" ; # List of registered resolvers

project.shed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ e47b6a79a963c99b7de15a4817b3010fbb3dd693 {
6464
entity {
6565
name: thread
6666
shed_class: package
67-
version: 3.0.1
67+
version: 3.0.2
6868
}
6969
meta {
7070
build: tea

tests/all.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
package require tcltest
1111
::tcltest::loadTestedCommands
12-
package require -exact thread 3.0.1
12+
package require -exact thread 3.0.2
1313

1414
set ::tcltest::testSingleFile false
1515
set ::tcltest::testsDirectory [file dir [info script]]

win/pkg.vc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
PACKAGE_MAJOR = 3
55
PACKAGE_MINOR = 0
6-
PACKAGE_VERSION = "3.0.1"
6+
PACKAGE_VERSION = "3.0.2"

0 commit comments

Comments
 (0)