set new version for release
John Napiorkowski [Wed, 8 Jun 2016 15:37:42 +0000 (10:37 -0500)]
Changes
lib/Catalyst.pm
lib/Catalyst/Runtime.pm

diff --git a/Changes b/Changes
index 95255b3..d812bc6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -6,9 +6,9 @@
     that we compose just once at setup time (performance optimization).  Also added
     a debug screen at startup to display composed classes to help with debugging.
   - Fixed a regressed caused by the changes we made to the way ->state works so that
-    now when you forward to an action and that action throws and exception, $c->state
+    now when you forward to an action and that action throws an exception, $c->state
     is set to 0, instead of the value of the exeption (this is to be as indicated by
-    the documentation).
+    the documentation). (cventers++ for reported bug and test case).
 
 5.90104 - 2016-04-04
   - Merged pull request #131, fix for noisy debug logs when used type constraints
index 24ecb73..cdca151 100644 (file)
@@ -204,7 +204,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.90104';
+our $VERSION = '5.90105';
 $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
 
 sub import {
index 835066b..b96ec09 100644 (file)
@@ -7,7 +7,7 @@ BEGIN { require 5.008003; }
 
 # Remember to update this in Catalyst as well!
 
-our $VERSION = '5.90104';
+our $VERSION = '5.90105';
 $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
 
 =head1 NAME