0.71 0.71
Hans Dieter Pearcey [Sat, 28 Mar 2009 16:16:51 +0000 (12:16 -0400)]
Changes
README
lib/Catalyst/Action/REST.pm
lib/Catalyst/Controller/REST.pm

diff --git a/Changes b/Changes
index ea9d1e7..12d66a1 100644 (file)
--- 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 (file)
--- 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;
index d05fd08..b9e84cf 100644 (file)
@@ -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;
index 54efe6a..bb7fda9 100644 (file)
@@ -1,6 +1,6 @@
 package Catalyst::Controller::REST;
 
-our $VERSION = '0.70';
+our $VERSION = '0.71';
 
 =head1 NAME