Skip to content

Commit

Permalink
cpan/Term-Table - Update to version 0.023
Browse files Browse the repository at this point in the history
0.023     2024-10-26 20:30:20-07:00 America/Los_Angeles

    - t/honor_env_in_non_tty.t requires Test2::Tools::Tiny >= 1.30297;
      use Test::More if not available
  • Loading branch information
Chad Granum authored and jkeenan committed Nov 11, 2024
1 parent bddd34c commit f1af883
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Porting/Maintainers.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1078,8 +1078,8 @@ package Maintainers;
},

'Term::Table' => {
'DISTRIBUTION' => 'EXODIST/Term-Table-0.022.tar.gz',
'SYNCINFO' => 'jkeenan on Wed Aug 14 21:27:04 2024',
'DISTRIBUTION' => 'EXODIST/Term-Table-0.023.tar.gz',
'SYNCINFO' => 'jkeenan on Sun Nov 10 18:18:57 2024',
'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.022';
our $VERSION = '0.023';

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.022';
our $VERSION = '0.023';

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.022';
our $VERSION = '0.023';

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.022';
our $VERSION = '0.023';

#################################################################
# #
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.022';
our $VERSION = '0.023';

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.022';
our $VERSION = '0.023';

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.022';
our $VERSION = '0.023';

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

BEGIN {
if (eval { require Test2::Tools::Tiny }) {
if (eval 'use Test2::Tools::Tiny 1.302097; 1; ' ) {
print "# Using Test2::Tools::Tiny\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";
Expand Down

0 comments on commit f1af883

Please sign in to comment.