diff --git a/Changes b/Changes index 2aa8ec1..db6b5af 100644 --- a/Changes +++ b/Changes @@ -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] diff --git a/META.json b/META.json index 7c725dc..5f56caf 100644 --- a/META.json +++ b/META.json @@ -127,7 +127,7 @@ "provides" : { "Asset::Pack" : { "file" : "lib/Asset/Pack.pm", - "version" : "0.000003" + "version" : "0.000004" } }, "release_status" : "stable", @@ -142,7 +142,7 @@ "web" : "https://github.com/kentnl/Asset-Pack" } }, - "version" : "0.000003", + "version" : "0.000004", "x_Dist_Zilla" : { "perl" : { "version" : "5.022000" @@ -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" @@ -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" diff --git a/META.yml b/META.yml index 1901bc5..7e64010 100644 --- a/META.yml +++ b/META.yml @@ -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' @@ -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' diff --git a/Makefile.PL b/Makefile.PL index 01bb61d..48b6637 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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" } diff --git a/lib/Asset/Pack.pm b/lib/Asset/Pack.pm index 20be61c..38e5fba 100644 --- a/lib/Asset/Pack.pm +++ b/lib/Asset/Pack.pm @@ -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 @@ -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 diff --git a/misc/Changes.deps b/misc/Changes.deps index 3ae3769..a80db2c 100644 --- a/misc/Changes.deps +++ b/misc/Changes.deps @@ -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 diff --git a/misc/Changes.deps.all b/misc/Changes.deps.all index a8bafb7..363e0ce 100644 --- a/misc/Changes.deps.all +++ b/misc/Changes.deps.all @@ -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 diff --git a/misc/Changes.deps.dev b/misc/Changes.deps.dev index 494875c..1f9b385 100644 --- a/misc/Changes.deps.dev +++ b/misc/Changes.deps.dev @@ -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 diff --git a/misc/Changes.deps.opt b/misc/Changes.deps.opt index 24807e5..a75cdd6 100644 --- a/misc/Changes.deps.opt +++ b/misc/Changes.deps.opt @@ -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 diff --git a/t/interop/App-FatPacker.t b/t/interop/App-FatPacker.t index 859d660..3149c80 100644 --- a/t/interop/App-FatPacker.t +++ b/t/interop/App-FatPacker.t @@ -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 );