Skip to content

Commit 21d8581

Browse files
author
jan.nijtmans
committed
Version -> 3.0.5
1 parent 6ba89e7 commit 21d8581

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.4.
3+
# Generated by GNU Autoconf 2.72 for thread 3.0.5.
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.4'
605-
PACKAGE_STRING='thread 3.0.4'
604+
PACKAGE_VERSION='3.0.5'
605+
PACKAGE_STRING='thread 3.0.5'
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.4 to adapt to many kinds of systems.
1333+
'configure' configures thread 3.0.5 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.4:";;
1395+
short | recursive ) echo "Configuration of thread 3.0.5:";;
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.4
1501+
thread configure 3.0.5
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.4, which was
1808+
It was created by thread $as_me 3.0.5, which was
18091809
generated by GNU Autoconf 2.72. Invocation command line was
18101810
18111811
$ $0$ac_configure_args_raw
@@ -10055,7 +10055,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1005510055
# report actual input values of CONFIG_FILES etc. instead of their
1005610056
# values after options handling.
1005710057
ac_log="
10058-
This file was extended by thread $as_me 3.0.4, which was
10058+
This file was extended by thread $as_me 3.0.5, which was
1005910059
generated by GNU Autoconf 2.72. Invocation command line was
1006010060
1006110061
CONFIG_FILES = $CONFIG_FILES
@@ -10110,7 +10110,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1011010110
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1011110111
ac_cs_config='$ac_cs_config_escaped'
1011210112
ac_cs_version="\\
10113-
thread config.status 3.0.4
10113+
thread config.status 3.0.5
1011410114
configured by $0, generated by GNU Autoconf 2.72,
1011510115
with options \\"\$ac_cs_config\\"
1011610116

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.4])
20+
AC_INIT([thread],[3.0.5])
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.4
156+
3.0.5
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.4
24+
3.0.5
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.4"
32+
#define PACKAGE_VERSION "3.0.5"
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.4
77-
package provide Ttrace 3.0.4
76+
package provide ttrace 3.0.5
77+
package provide Ttrace 3.0.5
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.4
67+
version: 3.0.5
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.4
12+
package require -exact thread 3.0.5
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.4"
6+
PACKAGE_VERSION = "3.0.5"

0 commit comments

Comments
 (0)