From: John Napiorkowski Date: Tue, 11 Aug 2015 19:22:49 +0000 (-0500) Subject: prep next release X-Git-Tag: 5.90100~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=ce3b4f1018499e6625dfe42c25a419cff73d8537 prep next release --- diff --git a/Changes b/Changes index f5ff718..92d65c0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ # This file documents the revision history for Perl extension Catalyst. +5.90098 - 2015-08-11 + - Fix for RT#106373 (Issue when you try to install and also have an old + verion of Test::Mechanize::WWW::Catalyst) + 5.90097 - 2015-07-28 - $c->uri_for now defines a final argument for setting the URL fragment /URL anchor. This is now the canonical approach to setting a fragment diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 5a45b92..574ee01 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -180,7 +180,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.90097'; +our $VERSION = '5.90098'; $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 cad8cb2..80b56c2 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.90097'; +our $VERSION = '5.90098'; $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases =head1 NAME