File tree Expand file tree Collapse file tree 9 files changed +16
-11
lines changed Expand file tree Collapse file tree 9 files changed +16
-11
lines changed Original file line number Diff line number Diff 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 ) ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.024 ' ;
5+ our $VERSION = ' 0.025 ' ;
66
77use Term::Table::Cell();
88
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::Cell;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.024 ' ;
5+ our $VERSION = ' 0.025 ' ;
66
77use Term::Table::LineBreak();
88use Term::Table::Util qw/ uni_length/ ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::CellStack;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.024 ' ;
5+ our $VERSION = ' 0.025 ' ;
66
77use Term::Table::HashBase qw/ -cells -idx/ ;
88
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::HashBase;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.024 ' ;
5+ our $VERSION = ' 0.025 ' ;
66
77# ################################################################
88# #
@@ -31,7 +31,7 @@ require Carp;
3131}
3232
3333BEGIN {
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' ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::LineBreak;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.024 ' ;
5+ our $VERSION = ' 0.025 ' ;
66
77use Carp qw/ croak/ ;
88use Scalar::Util qw/ blessed/ ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package Term::Table::Spacer;
22use strict;
33use warnings;
44
5- our $VERSION = ' 0.024 ' ;
5+ our $VERSION = ' 0.025 ' ;
66
77sub new { bless {}, $_ [0] }
88
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use warnings;
44
55use Config qw/ %Config/ ;
66
7- our $VERSION = ' 0.024 ' ;
7+ our $VERSION = ' 0.025 ' ;
88
99use base ' Exporter' ;
1010our @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 @@ -3,7 +3,12 @@ use warnings;
33
44BEGIN {
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 }) {
You can’t perform that action at this time.
0 commit comments