Skip to content

Commit

Permalink
cpan/Term-Table - Update to version 0.024
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Chad Granum authored and jkeenan committed Jan 5, 2025
1 parent d7e5e27 commit bb92170
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1079,8 +1079,8 @@ package Maintainers;
},

'Term::Table' => {
'DISTRIBUTION' => 'EXODIST/Term-Table-0.023.tar.gz',
'SYNCINFO' => 'jkeenan on Sun Nov 10 18:18:57 2024',
'DISTRIBUTION' => 'EXODIST/Term-Table-0.024.tar.gz',
'SYNCINFO' => 'jkeenan on Sun Jan 5 06:51:34 2025',
'FILES' => q[cpan/Term-Table],
'EXCLUDED' => [
qw( appveyor.yml ),
Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Term::Table;
use strict;
use warnings;

our $VERSION = '0.023';
our $VERSION = '0.024';

use Term::Table::Cell();

Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table/Cell.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Term::Table::Cell;
use strict;
use warnings;

our $VERSION = '0.023';
our $VERSION = '0.024';

use Term::Table::LineBreak();
use Term::Table::Util qw/uni_length/;
Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table/CellStack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Term::Table::CellStack;
use strict;
use warnings;

our $VERSION = '0.023';
our $VERSION = '0.024';

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

Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table/HashBase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Term::Table::HashBase;
use strict;
use warnings;

our $VERSION = '0.023';
our $VERSION = '0.024';

#################################################################
# #
Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table/LineBreak.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Term::Table::LineBreak;
use strict;
use warnings;

our $VERSION = '0.023';
our $VERSION = '0.024';

use Carp qw/croak/;
use Scalar::Util qw/blessed/;
Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table/Spacer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Term::Table::Spacer;
use strict;
use warnings;

our $VERSION = '0.023';
our $VERSION = '0.024';

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

Expand Down
2 changes: 1 addition & 1 deletion cpan/Term-Table/lib/Term/Table/Util.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

use Config qw/%Config/;

our $VERSION = '0.023';
our $VERSION = '0.024';

use base 'Exporter';
our @EXPORT_OK = qw/term_size USE_GCS USE_TERM_READKEY USE_TERM_SIZE_ANY uni_length/;
Expand Down
7 changes: 4 additions & 3 deletions cpan/Term-Table/t/honor_env_in_non_tty.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ use strict;
use warnings;

BEGIN {
if (eval 'use Test2::Tools::Tiny 1.302097; 1; ' ) {
print "# Using Test2::Tools::Tiny\n";
if (eval { require Test2::Tools::Tiny; Test2::Tools::Tiny->VERSION(1.302097); 1 }) {
print STDERR "# Using Test2::Tools::Tiny " . Test2::Tools::Tiny->VERSION . "\n";
Test2::Tools::Tiny->import;
}
elsif (eval { require Test::More; Test::More->can('done_testing') ? 1 : 0 }) {
print "# Using Test::More " . Test::More->VERSION . "\n";
print STDERR "# Using Test::More " . Test::More->VERSION . "\n";
Test::More->import();
}
else {
Expand Down

0 comments on commit bb92170

Please sign in to comment.