Skip to content

Commit

Permalink
Build results of 8e3fc70 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Dec 14, 2015
1 parent da38f76 commit e2e0e72
Show file tree
Hide file tree
Showing 16 changed files with 72 additions and 29 deletions.
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
Release history for Test-Stream-Plugin-Explain-Terse

0.001001 2015-12-14T11:01:59Z 833d955
- Import ::Core explicitly stating the need for cmp_ok, which was omitted from default_exports before Test::Stream
1.302025-TRIAL
- Require at least 1.302025, which is the first version that had a cmp_ok at all.

[Dependencies::Stats]
- Dependencies changed since 0.001000, see misc/*.deps* for details
- test: +2 ↑1

0.001000 2015-12-13T09:31:20Z 2de012a
- First version.
12 changes: 7 additions & 5 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,10 @@
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"Test::More" : "0.89",
"Test::Stream" : "0",
"Test::Stream" : "1.302025",
"Test::Stream::Bundle::V1" : "0",
"Test::Stream::Plugin::Compare" : "0",
"Test::Stream::Plugin::Core" : "0",
"Test::Stream::Plugin::SRand" : "0",
"lib" : "0",
"perl" : "5.006"
Expand All @@ -125,7 +127,7 @@
"provides" : {
"Test::Stream::Plugin::Explain::Terse" : {
"file" : "lib/Test/Stream/Plugin/Explain/Terse.pm",
"version" : "0.001000"
"version" : "0.001001"
}
},
"release_status" : "stable",
Expand All @@ -140,7 +142,7 @@
"web" : "https://github.com/kentnl/Test-Stream-Plugin-Explain-Terse"
}
},
"version" : "0.001000",
"version" : "0.001001",
"x_BuiltWith" : {
"external_file" : "misc/built_with.json"
},
Expand Down Expand Up @@ -633,7 +635,7 @@
"branch" : null,
"changelog" : "Changes",
"signed" : 0,
"tag" : "0.001000-source",
"tag" : "0.001001-source",
"tag_format" : "%v-source",
"tag_message" : "v%v"
},
Expand Down Expand Up @@ -724,7 +726,7 @@
"branch" : "releases",
"changelog" : "Changes",
"signed" : 0,
"tag" : "0.001000",
"tag" : "0.001001",
"tag_format" : "%v",
"tag_message" : "v%v"
},
Expand Down
8 changes: 5 additions & 3 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
Test::More: '0.89'
Test::Stream: '0'
Test::Stream: '1.302025'
Test::Stream::Bundle::V1: '0'
Test::Stream::Plugin::Compare: '0'
Test::Stream::Plugin::Core: '0'
Test::Stream::Plugin::SRand: '0'
lib: '0'
perl: '5.006'
Expand All @@ -24,7 +26,7 @@ name: Test-Stream-Plugin-Explain-Terse
provides:
Test::Stream::Plugin::Explain::Terse:
file: lib/Test/Stream/Plugin/Explain/Terse.pm
version: '0.001000'
version: '0.001001'
requires:
Data::Dump: '0'
Test::Stream::Exporter: '0'
Expand All @@ -36,4 +38,4 @@ resources:
bugtracker: https://github.com/kentnl/Test-Stream-Plugin-Explain-Terse/issues
homepage: https://github.com/kentnl/Test-Stream-Plugin-Explain-Terse
repository: https://github.com/kentnl/Test-Stream-Plugin-Explain-Terse.git
version: '0.001000'
version: '0.001001'
10 changes: 7 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ my %WriteMakefileArgs = (
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => "0.89",
"Test::Stream" => 0,
"Test::Stream" => "1.302025",
"Test::Stream::Bundle::V1" => 0,
"Test::Stream::Plugin::Compare" => 0,
"Test::Stream::Plugin::Core" => 0,
"Test::Stream::Plugin::SRand" => 0,
"lib" => 0
},
"VERSION" => "0.001000",
"VERSION" => "0.001001",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
Expand All @@ -44,9 +46,11 @@ my %FallbackPrereqs = (
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"Test::More" => "0.89",
"Test::Stream" => 0,
"Test::Stream" => "1.302025",
"Test::Stream::Bundle::V1" => 0,
"Test::Stream::Exporter" => 0,
"Test::Stream::Plugin::Compare" => 0,
"Test::Stream::Plugin::Core" => 0,
"Test::Stream::Plugin::SRand" => 0,
"constant" => 0,
"lib" => 0,
Expand Down
4 changes: 2 additions & 2 deletions lib/Test/Stream/Plugin/Explain/Terse.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Test::Stream::Plugin::Explain::Terse;

our $VERSION = '0.001000';
our $VERSION = '0.001001';

# ABSTRACT: Dump anything in a single line in 80 characters or fewer

Expand Down Expand Up @@ -54,7 +54,7 @@ Test::Stream::Plugin::Explain::Terse - Dump anything in a single line in 80 char
=head1 VERSION
version 0.001000
version 0.001001
=head1 SYNOPSIS
Expand Down
8 changes: 8 additions & 0 deletions misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

0.001001
[Added / test requires]
- Test::Stream::Plugin::Compare
- Test::Stream::Plugin::Core

[Changed / test requires]
- Test::Stream 0 → 1.302025
8 changes: 8 additions & 0 deletions misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

0.001001
[Added / test requires]
- Test::Stream::Plugin::Compare
- Test::Stream::Plugin::Core

[Changed / test requires]
- Test::Stream 0 → 1.302025
2 changes: 2 additions & 0 deletions misc/Changes.deps.dev
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This file contains changes to DEVELOPMENT dependencies only ( both REQUIRED and OPTIONAL )

0.001001
2 changes: 2 additions & 0 deletions misc/Changes.deps.opt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
This file contains changes in OPTIONAL dependencies for standard CPAN phases (configure/build/runtime/test)

0.001001
2 changes: 2 additions & 0 deletions misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"failures" : {
"Test::Stream::Bundle::V1" : "Module::MetaData could not parse a version from /home/kent/perl5/perlbrew/perls/5.22.0/lib/site_perl/5.22.0/Test/Stream/Bundle/V1.pm",
"Test::Stream::Exporter" : "Module::MetaData could not parse a version from /home/kent/perl5/perlbrew/perls/5.22.0/lib/site_perl/5.22.0/Test/Stream/Exporter.pm",
"Test::Stream::Plugin::Compare" : "Module::MetaData could not parse a version from /home/kent/perl5/perlbrew/perls/5.22.0/lib/site_perl/5.22.0/Test/Stream/Plugin/Compare.pm",
"Test::Stream::Plugin::Core" : "Module::MetaData could not parse a version from /home/kent/perl5/perlbrew/perls/5.22.0/lib/site_perl/5.22.0/Test/Stream/Plugin/Core.pm",
"Test::Stream::Plugin::SRand" : "Module::MetaData could not parse a version from /home/kent/perl5/perlbrew/perls/5.22.0/lib/site_perl/5.22.0/Test/Stream/Plugin/SRand.pm"
},
"modules" : {
Expand Down
4 changes: 3 additions & 1 deletion t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,10 @@ do { my $x = {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'Test::More' => '0.89',
'Test::Stream' => '0',
'Test::Stream' => '1.302025',
'Test::Stream::Bundle::V1' => '0',
'Test::Stream::Plugin::Compare' => '0',
'Test::Stream::Plugin::Core' => '0',
'Test::Stream::Plugin::SRand' => '0',
'lib' => '0',
'perl' => '5.006'
Expand Down
5 changes: 3 additions & 2 deletions t/basic.t
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use strict;
use warnings;

use Test::Stream::Bundle::V1;
use Test::Stream::Plugin::Explain::Terse;
use Test::Stream::Plugin::Core qw( can_ok done_testing ok );
use Test::Stream::Plugin::Compare qw( is );
use Test::Stream::Plugin::Explain::Terse qw( explain_terse );

# ABSTRACT: Basic self-test

Expand Down
5 changes: 3 additions & 2 deletions t/hash_multiline.t
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use strict;
use warnings;

use Test::Stream::Bundle::V1;
use Test::Stream::Plugin::Explain::Terse;
use Test::Stream 1.302025 (); # Core.cmp_ok
use Test::Stream::Plugin::Core qw( note cmp_ok done_testing );
use Test::Stream::Plugin::Explain::Terse qw( explain_terse );
use Test::Stream::Plugin::SRand;
use Data::Dump qw(pp);

Expand Down
8 changes: 4 additions & 4 deletions t/string_long.t
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
use strict;
use warnings;

use Test::Stream::Bundle::V1;
use Test::Stream::Plugin::Explain::Terse;
use Test::Stream 1.302025 (); # Core.cmp_ok
use Test::Stream::Plugin::Core qw( note cmp_ok done_testing ok );
use Test::Stream::Plugin::Compare qw( is );
use Test::Stream::Plugin::Explain::Terse qw( explain_terse );
use Test::Stream::Plugin::SRand;
use Data::Dump qw(pp);

use lib 't/lib';
use T::Grapheme qw/grapheme_str/;

# These have to be random strings because Data::Dump is smart enough to reverse
# "N" x $n back into a short expression!
{
note "dumped string would be >80 normally";

Expand Down
5 changes: 3 additions & 2 deletions t/string_newline.t
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use strict;
use warnings;

use Test::Stream::Bundle::V1;
use Test::Stream::Plugin::Explain::Terse;
use Test::Stream::Plugin::Core qw( note done_testing );
use Test::Stream::Plugin::Compare qw( is );
use Test::Stream::Plugin::Explain::Terse qw( explain_terse );
use Data::Dump qw(pp);

{
Expand Down
9 changes: 4 additions & 5 deletions t/string_short.t
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
use strict;
use warnings;

use Test::Stream::Bundle::V1;
use Test::Stream::Plugin::Explain::Terse;
use Test::Stream 1.302025 (); # Core.cmp_ok
use Test::Stream::Plugin::Core qw( ok note cmp_ok done_testing );
use Test::Stream::Plugin::Compare qw( is );
use Test::Stream::Plugin::Explain::Terse qw( explain_terse );
use Test::Stream::Plugin::SRand;
use Data::Dump qw(pp);

use lib 't/lib';
use T::Grapheme qw/grapheme_str/;
{
# These have to be random strings because Data::Dump is smart enough to reverse
# "N" x $n back into a short expression!

note "dumped string would be 80 or less normally";

my $sub_long = grapheme_str( 80 - 2 ); # minus 2 because pp adds quotes.
Expand Down

0 comments on commit e2e0e72

Please sign in to comment.