From: John Napiorkowski Date: Sun, 21 Jan 2018 22:39:48 +0000 (-0600) Subject: reported errors X-Git-Tag: 5.90117^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=93534e4d63fd2b3600acede08843e297f4398085 reported errors --- diff --git a/Changes b/Changes index 691d628..0c691fe 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ # This file documents the revision history for Perl extension Catalyst. -5.90116 - 2017-01-19 +5.90117 - 2018-01-21 + - Fixed errors in distribution packaging + +5.90116 - 2018-01-19 - Switch from Module::Install to Distar (solves problems that MI has with newer Perl) haarg++ - Killed Test::Aggregate since its clearly doomed - PR135 - improved test cases for query keywork diff --git a/Makefile.PL b/Makefile.PL index 16b0097..13c8230 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -87,7 +87,6 @@ my %META = ( }, develop => { requires => { - 'Test::Aggregate' => '0.364', 'Test::Simple' => '0.88', 'CatalystX::LeakChecker' => '0.05', 'Catalyst::Devel' => '1.0', # For http server test diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 18a6e7b..62615c6 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -205,7 +205,7 @@ sub composed_stats_class { __PACKAGE__->_encode_check(Encode::FB_CROAK | Encode::LEAVE_SRC); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90116'; +our $VERSION = '5.90117'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases sub import { diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 897646a..daf8945 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008003; } # Remember to update this in Catalyst as well! -our $VERSION = '5.90116'; +our $VERSION = '5.90117'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME diff --git a/t/data_handler.t b/t/data_handler.t index 65af48a..d51143d 100644 --- a/t/data_handler.t +++ b/t/data_handler.t @@ -7,7 +7,6 @@ use FindBin; use Test::More; use HTTP::Request::Common; use JSON::MaybeXS; -use Capture::Tiny qw/:all/; use lib "$FindBin::Bin/lib"; use Catalyst::Test 'TestDataHandlers';