diff --git a/Changes b/Changes index 438c4e08..e3fa8429 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,12 @@ Revision history for WWW::Mechanize -{{$NEXT}} +1.91 2019-01-10 18:44:33Z + [ENHANCEMENTS] + + - Don't install Perl::Critic and Perl::Tidy to run user tests (GH#268) + (Julien Fiegehenn) + - Remove redundant PodSyntaxTests (GH#265) (Andrew Grangaard) + - Add test dependency for Perl::Tidy (GH#263) (Julien Fiegehenn) 1.90 2018-11-12 18:02:03Z [DOCUMENTATION] diff --git a/META.json b/META.json index 29610ca5..46464ca6 100644 --- a/META.json +++ b/META.json @@ -34,8 +34,13 @@ "Dist::Zilla::PluginBundle::Git::VersionManager" : "0.007" }, "requires" : { + "Code::TidyAll" : "0.71", "Code::TidyAll::Plugin::SortLines::Naturally" : "0.000003", + "Code::TidyAll::Plugin::Test::Vars" : "0.04", "Encode" : "0", + "Parallel::ForkManager" : "1.19", + "Perl::Critic" : "1.132", + "Perl::Tidy" : "20180220", "Pod::Coverage::TrustPod" : "0", "Test::Code::TidyAll" : "0.50", "Test::More" : "0.88", @@ -43,6 +48,7 @@ "Test::Pod" : "1.41", "Test::Pod::Coverage" : "1.08", "Test::RequiresInternet" : "0", + "Test::Vars" : "0.014", "constant" : "0", "lib" : "0" } @@ -86,8 +92,6 @@ "HTTP::Server::Simple::CGI" : "0", "LWP" : "0", "LWP::Simple" : "0", - "Perl::Critic" : "0", - "Perl::Tidy" : "0", "Test::Deep" : "0", "Test::Fatal" : "0", "Test::More" : "0.96", @@ -104,15 +108,15 @@ "provides" : { "WWW::Mechanize" : { "file" : "lib/WWW/Mechanize.pm", - "version" : "1.90" + "version" : "1.91" }, "WWW::Mechanize::Image" : { "file" : "lib/WWW/Mechanize/Image.pm", - "version" : "1.90" + "version" : "1.91" }, "WWW::Mechanize::Link" : { "file" : "lib/WWW/Mechanize/Link.pm", - "version" : "1.90" + "version" : "1.91" } }, "release_status" : "stable", @@ -127,7 +131,7 @@ "web" : "https://github.com/libwww-perl/WWW-Mechanize" } }, - "version" : "1.90", + "version" : "1.91", "x_Dist_Zilla" : { "perl" : { "version" : "5.026001" @@ -233,17 +237,17 @@ { "class" : "Dist::Zilla::Plugin::InstallGuide", "name" : "@Author::OALDERS/InstallGuide", - "version" : "1.200011" + "version" : "1.200012" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { - "phase" : "runtime", + "phase" : "develop", "type" : "requires" } }, - "name" : "@Author::OALDERS/Prereqs", + "name" : "@Author::OALDERS/Modules for use with tidyall", "version" : "6.012" }, { @@ -256,6 +260,11 @@ "name" : "@Author::OALDERS/PodCoverageTests", "version" : "6.012" }, + { + "class" : "Dist::Zilla::Plugin::PodSyntaxTests", + "name" : "@Author::OALDERS/PodSyntaxTests", + "version" : "6.012" + }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Author::OALDERS/TestRelease", @@ -451,7 +460,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.20.1", "repo_root" : "." } }, @@ -462,7 +471,7 @@ "class" : "Dist::Zilla::Plugin::Git::Contributors", "config" : { "Dist::Zilla::Plugin::Git::Contributors" : { - "git_version" : "2.19.1", + "git_version" : "2.20.1", "include_authors" : 0, "include_releaser" : 1, "order_by" : "name", @@ -570,7 +579,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.20.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -587,12 +596,12 @@ "branch" : null, "changelog" : "Changes", "signed" : 0, - "tag" : "v1.90", + "tag" : "v1.91", "tag_format" : "v%v", "tag_message" : "v%v" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.20.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -642,7 +651,7 @@ "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.20.1", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { @@ -662,7 +671,7 @@ "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { - "git_version" : "2.19.1", + "git_version" : "2.20.1", "repo_root" : "." } }, @@ -684,11 +693,6 @@ "name" : "RunExtraTests", "version" : "0.029" }, - { - "class" : "Dist::Zilla::Plugin::PodSyntaxTests", - "name" : "PodSyntaxTests", - "version" : "6.012" - }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { @@ -815,6 +819,7 @@ }, "x_contributors" : [ "Alexandr Ciornii ", + "Andrew Grangaard ", "Andy Lester ", "Bernhard Wagner ", "Chase Whitener ", diff --git a/Makefile.PL b/Makefile.PL index cff3f27a..0088918b 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -51,8 +51,6 @@ my %WriteMakefileArgs = ( "HTTP::Server::Simple::CGI" => 0, "LWP" => 0, "LWP::Simple" => 0, - "Perl::Critic" => 0, - "Perl::Tidy" => 0, "Test::Deep" => 0, "Test::Fatal" => 0, "Test::More" => "0.96", @@ -93,8 +91,6 @@ my %FallbackPrereqs = ( "LWP" => 0, "LWP::Simple" => 0, "LWP::UserAgent" => "5.827", - "Perl::Critic" => 0, - "Perl::Tidy" => 0, "Pod::Usage" => 0, "Scalar::Util" => "1.14", "Test::Deep" => 0, diff --git a/README.md b/README.md index fe2d996a..c7c31d78 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ WWW::Mechanize - Handy web browsing in a Perl object # VERSION -version 1.90 +version 1.91 # SYNOPSIS diff --git a/cpanfile b/cpanfile index 9e6d6127..0b715c02 100644 --- a/cpanfile +++ b/cpanfile @@ -30,8 +30,6 @@ on 'test' => sub { requires "HTTP::Server::Simple::CGI" => "0"; requires "LWP" => "0"; requires "LWP::Simple" => "0"; - requires "Perl::Critic" => "0"; - requires "Perl::Tidy" => "0"; requires "Test::Deep" => "0"; requires "Test::Fatal" => "0"; requires "Test::More" => "0.96"; @@ -57,8 +55,13 @@ on 'configure' => sub { }; on 'develop' => sub { + requires "Code::TidyAll" => "0.71"; requires "Code::TidyAll::Plugin::SortLines::Naturally" => "0.000003"; + requires "Code::TidyAll::Plugin::Test::Vars" => "0.04"; requires "Encode" => "0"; + requires "Parallel::ForkManager" => "1.19"; + requires "Perl::Critic" => "1.132"; + requires "Perl::Tidy" => "20180220"; requires "Pod::Coverage::TrustPod" => "0"; requires "Test::Code::TidyAll" => "0.50"; requires "Test::More" => "0.88"; @@ -66,6 +69,7 @@ on 'develop' => sub { requires "Test::Pod" => "1.41"; requires "Test::Pod::Coverage" => "1.08"; requires "Test::RequiresInternet" => "0"; + requires "Test::Vars" => "0.014"; requires "constant" => "0"; requires "lib" => "0"; };