Skip to content

Commit bb92170

Browse files
Chad Granumjkeenan
authored andcommitted
cpan/Term-Table - Update to version 0.024
0.024 2024-12-27 18:52:06-08:00 America/Los_Angeles - Additional changes to t/honor_env_in_non_tty.t, and adding debugging
1 parent d7e5e27 commit bb92170

File tree

9 files changed

+13
-12
lines changed

9 files changed

+13
-12
lines changed

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1079,8 +1079,8 @@ package Maintainers;
10791079
},
10801080

10811081
'Term::Table' => {
1082-
'DISTRIBUTION' => 'EXODIST/Term-Table-0.023.tar.gz',
1083-
'SYNCINFO' => 'jkeenan on Sun Nov 10 18:18:57 2024',
1082+
'DISTRIBUTION' => 'EXODIST/Term-Table-0.024.tar.gz',
1083+
'SYNCINFO' => 'jkeenan on Sun Jan 5 06:51:34 2025',
10841084
'FILES' => q[cpan/Term-Table],
10851085
'EXCLUDED' => [
10861086
qw( appveyor.yml ),

cpan/Term-Table/lib/Term/Table.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Term::Table;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.023';
5+
our $VERSION = '0.024';
66

77
use Term::Table::Cell();
88

cpan/Term-Table/lib/Term/Table/Cell.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Term::Table::Cell;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.023';
5+
our $VERSION = '0.024';
66

77
use Term::Table::LineBreak();
88
use Term::Table::Util qw/uni_length/;

cpan/Term-Table/lib/Term/Table/CellStack.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Term::Table::CellStack;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.023';
5+
our $VERSION = '0.024';
66

77
use Term::Table::HashBase qw/-cells -idx/;
88

cpan/Term-Table/lib/Term/Table/HashBase.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Term::Table::HashBase;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.023';
5+
our $VERSION = '0.024';
66

77
#################################################################
88
# #

cpan/Term-Table/lib/Term/Table/LineBreak.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Term::Table::LineBreak;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.023';
5+
our $VERSION = '0.024';
66

77
use Carp qw/croak/;
88
use Scalar::Util qw/blessed/;

cpan/Term-Table/lib/Term/Table/Spacer.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Term::Table::Spacer;
22
use strict;
33
use warnings;
44

5-
our $VERSION = '0.023';
5+
our $VERSION = '0.024';
66

77
sub new { bless {}, $_[0] }
88

cpan/Term-Table/lib/Term/Table/Util.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44

55
use Config qw/%Config/;
66

7-
our $VERSION = '0.023';
7+
our $VERSION = '0.024';
88

99
use base 'Exporter';
1010
our @EXPORT_OK = qw/term_size USE_GCS USE_TERM_READKEY USE_TERM_SIZE_ANY uni_length/;

cpan/Term-Table/t/honor_env_in_non_tty.t

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ use strict;
22
use warnings;
33

44
BEGIN {
5-
if (eval 'use Test2::Tools::Tiny 1.302097; 1; ' ) {
6-
print "# Using Test2::Tools::Tiny\n";
5+
if (eval { require Test2::Tools::Tiny; Test2::Tools::Tiny->VERSION(1.302097); 1 }) {
6+
print STDERR "# Using Test2::Tools::Tiny " . Test2::Tools::Tiny->VERSION . "\n";
7+
Test2::Tools::Tiny->import;
78
}
89
elsif (eval { require Test::More; Test::More->can('done_testing') ? 1 : 0 }) {
9-
print "# Using Test::More " . Test::More->VERSION . "\n";
10+
print STDERR "# Using Test::More " . Test::More->VERSION . "\n";
1011
Test::More->import();
1112
}
1213
else {

0 commit comments

Comments
 (0)