Bump versions back to 5.8.4
Tomas Doran [Tue, 1 Sep 2009 14:11:05 +0000 (14:11 +0000)]
Changes
Makefile.PL
lib/Catalyst.pm
lib/Catalyst/Runtime.pm

diff --git a/Changes b/Changes
index bea41db..8fbb89f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -6,6 +6,8 @@
 
   Refactoring / cleanups:
      - Catalyst::Classdata now warns when class methods are called on instances.
+     - Reduce minimum supported perl version from 5.8.6 to 5.8.4 as there are
+       many people still running this version with no known issues.
 
   Tests:
      - Make the optional_http_server.t test an author only test which must be
index 667a893..6fae99a 100644 (file)
@@ -8,7 +8,7 @@ BEGIN { # Make it easy for newbies
         require Module::Install::AuthorTests;
     }
 }
-perl_version '5.008006';
+perl_version '5.008004';
 
 name 'Catalyst-Runtime';
 all_from 'lib/Catalyst/Runtime.pm';
index 39bee16..f616ba8 100644 (file)
@@ -32,7 +32,7 @@ use attributes;
 use utf8;
 use Carp qw/croak carp shortmess/;
 
-BEGIN { require 5.008001; }
+BEGIN { require 5.008004; }
 
 has stack => (is => 'ro', default => sub { [] });
 has stash => (is => 'rw', default => sub { {} });
index 59b5eee..d94f3f0 100644 (file)
@@ -3,7 +3,7 @@ package Catalyst::Runtime;
 use strict;
 use warnings;
 
-BEGIN { require 5.008006; }
+BEGIN { require 5.008004; }
 
 # Remember to update this in Catalyst as well!