From: John Napiorkowski Date: Wed, 21 Aug 2013 02:31:09 +0000 (-0400) Subject: prepping changefile and version info X-Git-Tag: 5.90050~1^2~45 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=e78db0df0d5a5e9f7c4c2186433e00c23c531c36 prepping changefile and version info --- diff --git a/Changes b/Changes index 8cdcf20..0922f90 100644 --- a/Changes +++ b/Changes @@ -5,7 +5,9 @@ - Fixed some pointless warnings when middleware class lacked VERSION - NEW FEATURE: Declare global 'data_handlers' for parsing HTTP POST/PUT alternative content, and created default JSON handler. Yes, now Catalyst - handles JSON request content out of the box! + handles JSON request content out of the box! More docs eventually but + for now see the DATA HANDLERS section in Catalyst.pm (or review the test + case t/data_handler.t 5.90049_001 - 2013-07-26 - Declare PSGI compliant Middleware as part of your Catalyst Application via diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index b9e9b4a..b02eb81 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -117,7 +117,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90049_001'; +our $VERSION = '5.90049_002'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index fc34fee..ebca126 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.90049_001'; +our $VERSION = '5.90049_002'; =head1 NAME