reported errors 5.90117
John Napiorkowski [Sun, 21 Jan 2018 22:39:48 +0000 (16:39 -0600)]
Changes
Makefile.PL
lib/Catalyst.pm
lib/Catalyst/Runtime.pm
t/data_handler.t

diff --git a/Changes b/Changes
index 691d628..0c691fe 100644 (file)
--- 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
index 16b0097..13c8230 100644 (file)
@@ -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
index 18a6e7b..62615c6 100644 (file)
@@ -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 {
index 897646a..daf8945 100644 (file)
@@ -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
index 65af48a..d51143d 100644 (file)
@@ -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';