From: Hans Dieter Pearcey Date: Sat, 28 Mar 2009 16:16:51 +0000 (-0400) Subject: 0.71 X-Git-Tag: 0.71 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=commitdiff_plain;h=888f25e36f418362daee8528b6af555dbee134b3 0.71 --- diff --git a/Changes b/Changes index ea9d1e7..12d66a1 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +Sat Mar 28 09:16:09 PDT 2009 (hdp) - Release 0.71 + Fix RT#44641, missing documented 'end' action + Fri Mar 27 23:21:17 PDT 2009 (hdp) - Release 0.70 Tests that use JSON were either not checking for the version or checking in a way that was a syntax error. diff --git a/README b/README index 5766808..692c135 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ NAME Catalyst::Controller::REST - A RESTful controller VERSION - 0.70 + 0.71 SYNOPSIS package Foo::Controller::Bar; diff --git a/lib/Catalyst/Action/REST.pm b/lib/Catalyst/Action/REST.pm index d05fd08..b9e84cf 100644 --- a/lib/Catalyst/Action/REST.pm +++ b/lib/Catalyst/Action/REST.pm @@ -18,7 +18,7 @@ use Catalyst::Controller::REST; BEGIN { require 5.008001; } -our $VERSION = '0.70'; +our $VERSION = '0.71'; sub new { my $class = shift; diff --git a/lib/Catalyst/Controller/REST.pm b/lib/Catalyst/Controller/REST.pm index 54efe6a..bb7fda9 100644 --- a/lib/Catalyst/Controller/REST.pm +++ b/lib/Catalyst/Controller/REST.pm @@ -1,6 +1,6 @@ package Catalyst::Controller::REST; -our $VERSION = '0.70'; +our $VERSION = '0.71'; =head1 NAME