Skip to content

Commit 62a961f

Browse files
Chad Granumjkeenan
authored andcommitted
cpan/Term-Table - Update to version 0.025
0.025 2025-08-31 10:51:26-07:00 America/Los_Angeles - Typo Fix - Hide some diagnostics when tests run in perl core
1 parent 326f023 commit 62a961f

File tree

9 files changed

+16
-11
lines changed

9 files changed

+16
-11
lines changed

Porting/Maintainers.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,8 +1088,8 @@ package Maintainers;
10881088
},
10891089

10901090
'Term::Table' => {
1091-
'DISTRIBUTION' => 'EXODIST/Term-Table-0.024.tar.gz',
1092-
'SYNCINFO' => 'jkeenan on Sun Jan 5 06:51:34 2025',
1091+
'DISTRIBUTION' => 'EXODIST/Term-Table-0.025.tar.gz',
1092+
'SYNCINFO' => 'jkeenan on Sun Aug 31 22:13:35 2025',
10931093
'FILES' => q[cpan/Term-Table],
10941094
'EXCLUDED' => [
10951095
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.024';
5+
our $VERSION = '0.025';
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.024';
5+
our $VERSION = '0.025';
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.024';
5+
our $VERSION = '0.025';
66

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

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

Lines changed: 2 additions & 2 deletions
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.024';
5+
our $VERSION = '0.025';
66

77
#################################################################
88
# #
@@ -31,7 +31,7 @@ require Carp;
3131
}
3232

3333
BEGIN {
34-
# these are not strictly equivalent, but for out use we don't care
34+
# these are not strictly equivalent, but for our use we don't care
3535
# about order
3636
*_isa = ($] >= 5.010 && require mro) ? \&mro::get_linear_isa : sub {
3737
no strict 'refs';

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.024';
5+
our $VERSION = '0.025';
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.024';
5+
our $VERSION = '0.025';
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.024';
7+
our $VERSION = '0.025';
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: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ use warnings;
33

44
BEGIN {
55
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";
6+
if (!$ENV{PERL_CORE}) {
7+
print STDERR "# Using Test2::Tools::Tiny " . Test2::Tools::Tiny->VERSION . "\n";
8+
}
9+
else {
10+
print "# Using Test2::Tools::Tiny\n";
11+
}
712
Test2::Tools::Tiny->import;
813
}
914
elsif (eval { require Test::More; Test::More->can('done_testing') ? 1 : 0 }) {

0 commit comments

Comments
 (0)