From: John Napiorkowski Date: Sat, 15 Jun 2013 00:43:28 +0000 (-0400) Subject: prep for release X-Git-Tag: 5.90041^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=refs%2Ftags%2F5.90041 prep for release --- diff --git a/Changes b/Changes index c5d2fb7..d535237 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ # This file documents the revision history for Perl extension Catalyst. +5.90041 - 2013-06-14 + - Bug fix release to fix regressions introduced in previous. I would consider + this a likely upgrade and if you are having trouble with the previous I hope + this fixes all of them. + - Fix regression with the cored Unicode plugin that broke systems where you are + setting encoding type in an external configuration file + - Fixed circular dependency introduced when we cored the unicode plugin tests + - Fixed a longstanding problem with stats when locale uses , instead of . for + number decimals + - Fixed some docs that didn't properly date the previous release. + 5.90040 - 2013-06-12 ! Stricter checking of attributes in Catalyst::DispatchType::Chained: 1) Only allow one of either :CaptureArgs or :Args diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 04ca5be..a6cf346 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -113,7 +113,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90040'; +our $VERSION = '5.90041'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index c2f5cb6..58645d2 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.90040'; +our $VERSION = '5.90041'; =head1 NAME