Merge branch 'master' of git@github.com:bobtfish/catalyst-action-rest
Tomas Doran [Mon, 26 Oct 2009 23:58:06 +0000 (23:58 +0000)]
* 'master' of git@github.com:bobtfish/catalyst-action-rest:
  Bump versions
  Require Moose for tests

Changes
Makefile.PL
lib/Catalyst/Action/REST.pm
lib/Catalyst/Controller/REST.pm

diff --git a/Changes b/Changes
index c0753f8..cc7148f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+Mon 28 Sep 15:01:03 BST 2009 - Release 0.78
+
+  Require Moose for the tests (RT#50066).
+
 Thu 27 Aug 02:21:09 BST 2009 - Release 0.77
 
   Allow dispatching to Catalyst Actions, for use with ActionClasses
index cd8b295..8012cd2 100644 (file)
@@ -15,6 +15,8 @@ requires('Class::Inspector'          => '1.13');
 requires('URI::Find'                 => undef);
 requires('MRO::Compat'               => '0.10');
 
+test_requires 'Moose';
+
 feature 'JSON (application/json) support',
     -default   => 0,
     'JSON'     => '2.12';
index c0f7823..7ddf629 100644 (file)
@@ -17,7 +17,7 @@ use Catalyst::Controller::REST;
 
 BEGIN { require 5.008001; }
 
-our $VERSION = '0.77';
+our $VERSION = '0.78';
 $VERSION = eval $VERSION;
 
 sub new {
index be91848..e855c9c 100644 (file)
@@ -2,7 +2,7 @@ package Catalyst::Controller::REST;
 use strict;
 use warnings;
 
-our $VERSION = '0.77';
+our $VERSION = '0.78';
 $VERSION = eval $VERSION;
 
 =head1 NAME