Skip to content

Commit

Permalink
Build results of 20aa21c (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jul 30, 2015
1 parent 17a1dea commit 1fb4c92
Show file tree
Hide file tree
Showing 25 changed files with 111 additions and 114 deletions.
12 changes: 12 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
Release history for Test-CPAN-Changes-ReallyStrict

1.000003 2015-07-30T05:03:24Z 14306fe
[Bugfix]
- Further narrow the range of versions we do testing on, we missed an important one :(

[Dependencies::Stats]
- Dependencies changed since 1.000002, see misc/*.deps* for details
- test: -1

[Tests]
- Centralised version checking logic.
- Remove use of FindBin

1.000002 2015-07-29T04:58:58Z 2696750
[Bugfix]
- Ensure encoding of source and normalised lines are the same.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ t/04_next_token.t
t/04_next_token_oo.t
t/99_changes_strict.t
t/99_changes_strict_oo.t
t/lib/Requires/CCAPI.pm
t/lib/mocktest.pm
util/normalize.pl
util/zuluize.pl
Expand Down
11 changes: 5 additions & 6 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::Spec" : "0",
"FindBin" : "0",
"Test::More" : "0.96",
"Text::Wrap" : "0",
"lib" : "0",
Expand All @@ -124,11 +123,11 @@
"provides" : {
"Test::CPAN::Changes::ReallyStrict" : {
"file" : "lib/Test/CPAN/Changes/ReallyStrict.pm",
"version" : "1.000002"
"version" : "1.000003"
},
"Test::CPAN::Changes::ReallyStrict::Object" : {
"file" : "lib/Test/CPAN/Changes/ReallyStrict/Object.pm",
"version" : "1.000002"
"version" : "1.000003"
}
},
"release_status" : "stable",
Expand All @@ -143,7 +142,7 @@
"web" : "https://github.com/kentnl/Test-CPAN-Changes-ReallyStrict"
}
},
"version" : "1.000002",
"version" : "1.000003",
"x_BuiltWith" : {
"external_file" : "misc/built_with.json"
},
Expand Down Expand Up @@ -637,7 +636,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : null,
"signed" : 0,
"tag" : "1.000002-source",
"tag" : "1.000003-source",
"tag_format" : "%v-source",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down Expand Up @@ -713,7 +712,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : "releases",
"signed" : 0,
"tag" : "1.000002",
"tag" : "1.000003",
"tag_format" : "%v",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down
7 changes: 3 additions & 4 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author:
build_requires:
ExtUtils::MakeMaker: '0'
File::Spec: '0'
FindBin: '0'
Test::More: '0.96'
Text::Wrap: '0'
lib: '0'
Expand All @@ -23,10 +22,10 @@ name: Test-CPAN-Changes-ReallyStrict
provides:
Test::CPAN::Changes::ReallyStrict:
file: lib/Test/CPAN/Changes/ReallyStrict.pm
version: '1.000002'
version: '1.000003'
Test::CPAN::Changes::ReallyStrict::Object:
file: lib/Test/CPAN/Changes/ReallyStrict/Object.pm
version: '1.000002'
version: '1.000003'
requires:
CPAN::Changes: '0.27'
Class::Tiny: '0'
Expand All @@ -40,4 +39,4 @@ resources:
bugtracker: https://github.com/kentnl/Test-CPAN-Changes-ReallyStrict/issues
homepage: https://github.com/kentnl/Test-CPAN-Changes-ReallyStrict
repository: https://github.com/kentnl/Test-CPAN-Changes-ReallyStrict.git
version: '1.000002'
version: '1.000003'
4 changes: 1 addition & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ my %WriteMakefileArgs = (
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"FindBin" => 0,
"Test::More" => "0.96",
"Text::Wrap" => 0,
"lib" => 0
},
"VERSION" => "1.000002",
"VERSION" => "1.000003",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t"
}
Expand All @@ -47,7 +46,6 @@ my %FallbackPrereqs = (
"Encode" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"FindBin" => 0,
"Test::Builder" => 0,
"Test::More" => "0.96",
"Text::Wrap" => 0,
Expand Down
4 changes: 2 additions & 2 deletions lib/Test/CPAN/Changes/ReallyStrict.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Test::CPAN::Changes::ReallyStrict;

our $VERSION = '1.000002';
our $VERSION = '1.000003';

#ABSTRACT: Ensure a Changes file looks exactly like it would if it was machine generated.

Expand Down Expand Up @@ -108,7 +108,7 @@ Test::CPAN::Changes::ReallyStrict - Ensure a Changes file looks exactly like it
=head1 VERSION
version 1.000002
version 1.000003
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Test/CPAN/Changes/ReallyStrict/Object.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use warnings;

package Test::CPAN::Changes::ReallyStrict::Object;

our $VERSION = '1.000002';
our $VERSION = '1.000003';

# ABSTRACT: Object Oriented Guts to ::ReallyStrict

Expand Down Expand Up @@ -311,7 +311,7 @@ Test::CPAN::Changes::ReallyStrict::Object - Object Oriented Guts to ::ReallyStri
=head1 VERSION
version 1.000002
version 1.000003
=head1 METHODS
Expand Down
6 changes: 5 additions & 1 deletion misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

1.000002
1.000003
[Removed / test requires]
- FindBin

1.000002 2015-07-29T04:58:58Z
[Added / configure requires]
- perl 5.006

Expand Down
6 changes: 5 additions & 1 deletion misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

1.000002
1.000003
[Removed / test requires]
- FindBin

1.000002 2015-07-29T04:58:58Z
[Added / configure requires]
- perl 5.006

Expand Down
4 changes: 3 additions & 1 deletion misc/Changes.deps.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file contains changes to DEVELOPMENT dependencies only ( both REQUIRED and OPTIONAL )

1.000002
1.000003

1.000002 2015-07-29T04:58:58Z
[Added / develop recommends]
- Test::More 0.99

Expand Down
4 changes: 3 additions & 1 deletion misc/Changes.deps.opt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file contains changes in OPTIONAL dependencies for standard CPAN phases (configure/build/runtime/test)

1.000002
1.000003

1.000002 2015-07-29T04:58:58Z
[Changed / configure recommends]
- ExtUtils::MakeMaker 6.98 → 7.00

Expand Down
1 change: 0 additions & 1 deletion misc/built_with.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
"Encode" : "2.73",
"ExtUtils::MakeMaker" : "7.04_01",
"File::Spec" : "3.56",
"FindBin" : "1.51",
"Pod::Coverage::TrustPod" : "0.100003",
"Test::Builder" : "1.001014",
"Test::CPAN::Changes" : "0.400002",
Expand Down
1 change: 0 additions & 1 deletion t/00-report-prereqs.dd
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ do { my $x = {
'requires' => {
'ExtUtils::MakeMaker' => '0',
'File::Spec' => '0',
'FindBin' => '0',
'Test::More' => '0.96',
'Text::Wrap' => '0',
'lib' => '0',
Expand Down
14 changes: 4 additions & 10 deletions t/01_basic_mock.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@ use strict;
use warnings;

use Test::More 0.96;
use CPAN::Changes;
use lib 't/lib';

local $TODO;
if ( eval 'CPAN::Changes->VERSION(q[0.5]); 1' ) {
if ( not $ENV{AUTHOR_TESTING} ) {
$TODO = "CPAN::Changes >= 0.5 is too new for this test";
}
}
our $TODO;
use Requires::CCAPI \$TODO;

use FindBin;
use lib "$FindBin::Bin/lib";
use mocktest;

my $mock = mocktest->new();
Expand All @@ -24,7 +18,7 @@ my $rval = Test::CPAN::Changes::ReallyStrict::_real_changes_file_ok(
{
delete_empty_groups => undef,
keep_comparing => undef,
filename => "$FindBin::Bin/../corpus/Changes_01.txt",
filename => "corpus/Changes_01.txt",
}
);

Expand Down
15 changes: 4 additions & 11 deletions t/01_basic_mock_oo.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,10 @@ use strict;
use warnings;

use Test::More 0.96;
use CPAN::Changes;
use lib 't/lib';

local $TODO;
if ( eval 'CPAN::Changes->VERSION(q[0.5]); 1' ) {
if ( not $ENV{AUTHOR_TESTING} ) {
$TODO = "CPAN::Changes >= 0.5 is too new for this test";
}
}

use FindBin;
use lib "$FindBin::Bin/lib";
our $TODO;
use Requires::CCAPI \$TODO;
use mocktest;

my $mock = mocktest->new();
Expand All @@ -24,7 +17,7 @@ my $obj = Test::CPAN::Changes::ReallyStrict::Object->new(
testbuilder => $mock,
delete_empty_groups => undef,
keep_comparing => undef,
filename => "$FindBin::Bin/../corpus/Changes_01.txt"
filename => "corpus/Changes_01.txt"
}
);

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

use Test::More 0.96;
use FindBin;
use lib "$FindBin::Bin/lib";
use lib "t/lib";
use mocktest;
my $mock = mocktest->new();

Expand All @@ -19,7 +18,7 @@ my $result = Test::CPAN::Changes::ReallyStrict::_real_changes_file_ok(
{
delete_empty_groups => undef,
keep_comparing => undef,
filename => "$FindBin::Bin/../corpus/Changes_02.txt",
filename => "corpus/Changes_02.txt",
}
);

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

use Test::More 0.96;
use FindBin;
use lib "$FindBin::Bin/lib";
use lib "t/lib";
use mocktest;

my $mock = mocktest->new();
Expand All @@ -22,7 +21,7 @@ my $obj = Test::CPAN::Changes::ReallyStrict::Object->new(
delete_empty_groups => undef,
keep_comparing => undef,
next_token => '__',
filename => "$FindBin::Bin/../corpus/Changes_02.txt",
filename => "corpus/Changes_02.txt",
}
);

Expand Down
15 changes: 5 additions & 10 deletions t/03_keep_comparing_keeps_comparing.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@ use strict;
use warnings;

use Test::More 0.96;
use CPAN::Changes;
local $TODO;
if ( eval 'CPAN::Changes->VERSION(q[0.5]); 1' ) {
if ( not $ENV{AUTHOR_TESTING} ) {
$TODO = "CPAN::Changes >= 0.5 is too new for this test";
}
}
use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';

our $TODO;
use Requires::CCAPI \$TODO;
use mocktest;

my $mock = mocktest->new();
Expand All @@ -21,7 +16,7 @@ my $res = Test::CPAN::Changes::ReallyStrict::_real_changes_file_ok(
{
delete_empty_groups => undef,
keep_comparing => 1,
filename => "$FindBin::Bin/../corpus/Changes_02.txt",
filename => "corpus/Changes_02.txt",
}
);

Expand Down
17 changes: 4 additions & 13 deletions t/03_keep_comparing_keeps_comparing_oo.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,9 @@ use strict;
use warnings;

use Test::More 0.96;

use CPAN::Changes;

local $TODO;
if ( eval 'CPAN::Changes->VERSION(q[0.5]); 1' ) {
if ( not $ENV{AUTHOR_TESTING} ) {
$TODO = "CPAN::Changes >= 0.5 is too new for this test";
}
}

use FindBin;
use lib "$FindBin::Bin/lib";
use lib 't/lib';
our $TODO;
use Requires::CCAPI \$TODO;
use mocktest;

my $mock = mocktest->new();
Expand All @@ -23,7 +14,7 @@ use Test::CPAN::Changes::ReallyStrict::Object;
my $x = Test::CPAN::Changes::ReallyStrict::Object->new(
{
testbuilder => $mock,
filename => "$FindBin::Bin/../corpus/Changes_02.txt",
filename => "corpus/Changes_02.txt",
delete_empty_groups => undef,
keep_comparing => 1,
}
Expand Down
Loading

0 comments on commit 1fb4c92

Please sign in to comment.