Skip to content

Commit

Permalink
Build results of c5e8728 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
kentfredric committed Jul 13, 2015
1 parent 660a584 commit aaf297f
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 15 deletions.
6 changes: 5 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
Revision history for Asset-Pack

0.000004 2015-07-13T06:11:23Z fcd9a2c
[BugFix Bugfix]
- Actually resolve the change I claimed to fix in 0.000003 because I can't count '0's.

0.000003 2015-07-13T05:40:50Z f70f711
[BugFix]
- Don't execute FatPacker interop test with FatPacker < 0.00917
- Don't execute FatPacker interop test with FatPacker < 0.009017
- Fatpacking itself should still work before this, but its just not practical to test

[Dependencies::Stats]
Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"provides" : {
"Asset::Pack" : {
"file" : "lib/Asset/Pack.pm",
"version" : "0.000003"
"version" : "0.000004"
}
},
"release_status" : "stable",
Expand All @@ -142,7 +142,7 @@
"web" : "https://github.com/kentnl/Asset-Pack"
}
},
"version" : "0.000003",
"version" : "0.000004",
"x_Dist_Zilla" : {
"perl" : {
"version" : "5.022000"
Expand Down Expand Up @@ -583,7 +583,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : null,
"signed" : 0,
"tag" : "0.000003-source",
"tag" : "0.000004-source",
"tag_format" : "%v-source",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down Expand Up @@ -659,7 +659,7 @@
"Dist::Zilla::Plugin::Git::Tag" : {
"branch" : "releases",
"signed" : 0,
"tag" : "0.000003",
"tag" : "0.000004",
"tag_format" : "%v",
"tag_message" : "v%v",
"time_zone" : "local"
Expand Down
4 changes: 2 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ name: Asset-Pack
provides:
Asset::Pack:
file: lib/Asset/Pack.pm
version: '0.000003'
version: '0.000004'
requires:
Data::Dumper: '0'
Exporter: '0'
Expand All @@ -39,4 +39,4 @@ resources:
bugtracker: https://github.com/kentnl/Asset-Pack/issues
homepage: https://github.com/kentnl/Asset-Pack
repository: https://github.com/kentnl/Asset-Pack.git
version: '0.000003'
version: '0.000004'
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ my %WriteMakefileArgs = (
"Test::Requires" => 0,
"Test::TempDir::Tiny" => 0
},
"VERSION" => "0.000003",
"VERSION" => "0.000004",
"test" => {
"TESTS" => "t/*.t t/00-compile/*.t t/internals/*.t t/interop/*.t"
}
Expand Down
4 changes: 2 additions & 2 deletions lib/Asset/Pack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ package Asset::Pack;
use Path::Tiny 0.069 qw( path ); # path()->visit without broken ref returns
use Try::Tiny qw( try catch );

our $VERSION = '0.000003';
our $VERSION = '0.000004';

# ABSTRACT: Easily pack assets into Perl Modules that can be fat-packed

Expand Down Expand Up @@ -336,7 +336,7 @@ Asset::Pack - Easily pack assets into Perl Modules that can be fat-packed
=head1 VERSION
version 0.000003
version 0.000004
=head1 SYNOPSIS
Expand Down
4 changes: 3 additions & 1 deletion misc/Changes.deps
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
This file contains changes in REQUIRED dependencies for standard CPAN phases (configure/build/runtime/test)

0.000003
0.000004

0.000003 2015-07-13T05:40:50Z

0.000002 2015-07-11T05:00:03Z
4 changes: 3 additions & 1 deletion misc/Changes.deps.all
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
This file contains ALL changes in dependencies in both REQUIRED / OPTIONAL dependencies for all phases (configure/build/runtime/test/develop)

0.000003
0.000004

0.000003 2015-07-13T05:40:50Z
[Changed / test recommends]
- App::FatPacker 0 → 0.009017

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

0.000003
0.000004

0.000003 2015-07-13T05:40:50Z

0.000002 2015-07-11T05:00:03Z
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)

0.000003
0.000004

0.000003 2015-07-13T05:40:50Z
[Changed / test recommends]
- App::FatPacker 0 → 0.009017

Expand Down
2 changes: 1 addition & 1 deletion t/interop/App-FatPacker.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use strict;
use warnings;

use Test::More;
use Test::Requires { "App::FatPacker" => '0.0009017' }; # Minimum required for fatpack_file
use Test::Requires { "App::FatPacker" => '0.009017' }; # Minimum required for fatpack_file
use Test::TempDir::Tiny qw( tempdir );
use Path::Tiny qw( path cwd );
use Asset::Pack qw( find_and_pack );
Expand Down

0 comments on commit aaf297f

Please sign in to comment.