Skip to content

Commit e94e59e

Browse files
committed
Release 6.24.08
1 parent b03fcf7 commit e94e59e

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

Fixes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
24. V6.24.08 - 2023-04-10
12
23. Support LS_COLORS su,sg,tw,ow,st,mh variables. (Luke Mewburn)
23
22. Fixes for LS_COLORS ln=target: ls-F directory; reset on unsetenv;
34
intermittent parse bug; only support lower-case "target". (Luke Mewburn)

configure

Lines changed: 11 additions & 10 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.71 for Tcsh 6.24.07.
3+
# Generated by GNU Autoconf 2.71 for Tcsh 6.24.08.
44
#
55
# Report bugs to <https://bugs.astron.com/>.
66
#
@@ -611,8 +611,8 @@ MAKEFLAGS=
611611
# Identity of this package.
612612
PACKAGE_NAME='Tcsh'
613613
PACKAGE_TARNAME='tcsh'
614-
PACKAGE_VERSION='6.24.07'
615-
PACKAGE_STRING='Tcsh 6.24.07'
614+
PACKAGE_VERSION='6.24.08'
615+
PACKAGE_STRING='Tcsh 6.24.08'
616616
PACKAGE_BUGREPORT='https://bugs.astron.com/'
617617
PACKAGE_URL='https://www.tcsh.org/'
618618

@@ -1294,7 +1294,7 @@ if test "$ac_init_help" = "long"; then
12941294
# Omit some internal or obsolete options to make the list less imposing.
12951295
# This message is too long to be a string in the A/UX 3.1 sh.
12961296
cat <<_ACEOF
1297-
\`configure' configures Tcsh 6.24.07 to adapt to many kinds of systems.
1297+
\`configure' configures Tcsh 6.24.08 to adapt to many kinds of systems.
12981298
12991299
Usage: $0 [OPTION]... [VAR=VALUE]...
13001300
@@ -1360,7 +1360,7 @@ fi
13601360

13611361
if test -n "$ac_init_help"; then
13621362
case $ac_init_help in
1363-
short | recursive ) echo "Configuration of Tcsh 6.24.07:";;
1363+
short | recursive ) echo "Configuration of Tcsh 6.24.08:";;
13641364
esac
13651365
cat <<\_ACEOF
13661366
@@ -1458,7 +1458,7 @@ fi
14581458
test -n "$ac_init_help" && exit $ac_status
14591459
if $ac_init_version; then
14601460
cat <<\_ACEOF
1461-
Tcsh configure 6.24.07
1461+
Tcsh configure 6.24.08
14621462
generated by GNU Autoconf 2.71
14631463
14641464
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2172,7 +2172,7 @@ cat >config.log <<_ACEOF
21722172
This file contains any messages produced by compilers while
21732173
running configure, to aid debugging if configure makes a mistake.
21742174
2175-
It was created by Tcsh $as_me 6.24.07, which was
2175+
It was created by Tcsh $as_me 6.24.08, which was
21762176
generated by GNU Autoconf 2.71. Invocation command line was
21772177
21782178
$ $0$ac_configure_args_raw
@@ -2928,7 +2928,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
29282928

29292929

29302930

2931-
PACKAGE_DATE=2022-12-21
2931+
PACKAGE_DATE=2023-04-10
29322932

29332933
PACKAGE_ORIGIN=Astron
29342934

@@ -2984,6 +2984,7 @@ PACKAGE_VERS="${PACKAGE_VERS%.*}"
29842984

29852985

29862986
PACKAGE_PATCHLEVEL="${PACKAGE_VERSION##*.}"
2987+
PACKAGE_PATCHLEVEL="${PACKAGE_PATCHLEVEL##0}"
29872988

29882989

29892990

@@ -9476,7 +9477,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
94769477
# report actual input values of CONFIG_FILES etc. instead of their
94779478
# values after options handling.
94789479
ac_log="
9479-
This file was extended by Tcsh $as_me 6.24.07, which was
9480+
This file was extended by Tcsh $as_me 6.24.08, which was
94809481
generated by GNU Autoconf 2.71. Invocation command line was
94819482
94829483
CONFIG_FILES = $CONFIG_FILES
@@ -9545,7 +9546,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
95459546
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
95469547
ac_cs_config='$ac_cs_config_escaped'
95479548
ac_cs_version="\\
9548-
Tcsh config.status 6.24.07
9549+
Tcsh config.status 6.24.08
95499550
configured by $0, generated by GNU Autoconf 2.71,
95509551
with options \\"\$ac_cs_config\\"
95519552

configure.ac

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ dnl Written by Kaveh Ghazi ([email protected]) 5/11/96.
1010
dnl
1111
dnl UPDATE THIS SECTION FOR RELEASE
1212
dnl
13-
AC_DEFUN([TCSH_VERSION], [6.24.07])
14-
AC_DEFUN([TCSH_DATE], [2022-12-21])
13+
AC_DEFUN([TCSH_VERSION], [6.24.08])
14+
AC_DEFUN([TCSH_DATE], [2023-04-10])
1515

1616
AC_PREREQ([2.69])dnl Minimum Autoconf version required.
1717
AC_INIT([Tcsh],TCSH_VERSION,[https://bugs.astron.com/],,[https://www.tcsh.org/])
@@ -54,6 +54,7 @@ PACKAGE_VERS="${PACKAGE_VERS%.*}"
5454
AC_SUBST(PACKAGE_VERS)
5555

5656
PACKAGE_PATCHLEVEL="${PACKAGE_VERSION##*.}"
57+
PACKAGE_PATCHLEVEL="${PACKAGE_PATCHLEVEL##0}"
5758
AC_SUBST(PACKAGE_PATCHLEVEL)
5859

5960
AC_CONFIG_AUX_DIR([acaux])

debian/changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
tcsh (6.24.07) unstable; urgency=medium
1+
tcsh (6.24.08) unstable; urgency=medium
22

3-
* Release 6.24.07
3+
* Release 6.24.08
44
* Please look in the Fixes file for an actual changelog
55
* In packaging tcsh:
66
- Avoid non-default settings in system-wide init files.
77
- Use https://salsa.debian.org/debian/tcsh/debian resources
88
to maintain compatibility with older versions packaged by
99
Debian.
1010

11-
-- The Tcsh Team <[email protected]> Wed, 21 Dec 2022 00:00:00 +0000
11+
-- The Tcsh Team <[email protected]> Mon, 10 Apr 2023 00:00:00 +0000

0 commit comments

Comments
 (0)