From: John Napiorkowski Date: Tue, 2 Dec 2014 23:15:35 +0000 (-0600) Subject: fixed typo X-Git-Tag: 5.90079_002^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=bd4b086b23987a3f29bfc16d1a64b03c45a02884 fixed typo --- diff --git a/Changes b/Changes index 7c12eb1..37f30d7 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,10 @@ # This file documents the revision history for Perl extension Catalyst. -5.90079_001 - TBD +5.90079_002 - 2014-12-02 + - Fixed typo in Makefile.PL which borked the previous distribution. No other + changes. + +5.90079_001 - 2014-12-02 - MyApp->to_app is now an alias for MyApp->psgi_app in order to better support existing Plack conventions. - Modify Catayst::Response->from_psgi_response to allow the first argument to diff --git a/Makefile.PL b/Makefile.PL index f4b6ba8..f862960 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -70,7 +70,7 @@ requires 'Class::Data::Inheritable'; requires 'Encode' => '2.49'; requires 'LWP' => '5.837'; # LWP had unicode fail in 5.8.26 requires 'URI' => '1.65'; -requires 'URI::ws' => '003'; +requires 'URI::ws' => '0.03'; requires 'JSON::MaybeXS' => '1.000000'; requires 'Stream::Buffered'; requires 'Hash::MultiValue'; diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 570abc8..74389f5 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -129,7 +129,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); __PACKAGE__->_encode_check(Encode::FB_CROAK | Encode::LEAVE_SRC); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90079_001'; +our $VERSION = '5.90079_002'; $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 d2b1eb8..0464934 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.90079_001'; +our $VERSION = '5.90079_002'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME