File tree Expand file tree Collapse file tree 9 files changed +13
-12
lines changed Expand file tree Collapse file tree 9 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -1079,8 +1079,8 @@ package Maintainers;
1079
1079
},
1080
1080
1081
1081
' 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 ' ,
1084
1084
' FILES' => q[ cpan/Term-Table] ,
1085
1085
' EXCLUDED' => [
1086
1086
qw( appveyor.yml ) ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.023 ' ;
5
+ our $VERSION = ' 0.024 ' ;
6
6
7
7
use Term::Table::Cell();
8
8
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::Cell;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.023 ' ;
5
+ our $VERSION = ' 0.024 ' ;
6
6
7
7
use Term::Table::LineBreak();
8
8
use Term::Table::Util qw/ uni_length/ ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::CellStack;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.023 ' ;
5
+ our $VERSION = ' 0.024 ' ;
6
6
7
7
use Term::Table::HashBase qw/ -cells -idx/ ;
8
8
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::HashBase;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.023 ' ;
5
+ our $VERSION = ' 0.024 ' ;
6
6
7
7
# ################################################################
8
8
# #
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::LineBreak;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.023 ' ;
5
+ our $VERSION = ' 0.024 ' ;
6
6
7
7
use Carp qw/ croak/ ;
8
8
use Scalar::Util qw/ blessed/ ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::Spacer;
2
2
use strict;
3
3
use warnings;
4
4
5
- our $VERSION = ' 0.023 ' ;
5
+ our $VERSION = ' 0.024 ' ;
6
6
7
7
sub new { bless {}, $_ [0] }
8
8
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use warnings;
4
4
5
5
use Config qw/ %Config/ ;
6
6
7
- our $VERSION = ' 0.023 ' ;
7
+ our $VERSION = ' 0.024 ' ;
8
8
9
9
use base ' Exporter' ;
10
10
our @EXPORT_OK = qw/ term_size USE_GCS USE_TERM_READKEY USE_TERM_SIZE_ANY uni_length/ ;
Original file line number Diff line number Diff line change @@ -2,11 +2,12 @@ use strict;
2
2
use warnings;
3
3
4
4
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 ;
7
8
}
8
9
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 " ;
10
11
Test::More-> import ();
11
12
}
12
13
else {
You can’t perform that action at this time.
0 commit comments