From: Tomas Doran Date: Tue, 1 Sep 2009 14:11:05 +0000 (+0000) Subject: Bump versions back to 5.8.4 X-Git-Tag: 5.80012~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=2407a0ae46fdd91f696c7f31fb928046c39d69c3 Bump versions back to 5.8.4 --- diff --git a/Changes b/Changes index bea41db..8fbb89f 100644 --- 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 diff --git a/Makefile.PL b/Makefile.PL index 667a893..6fae99a 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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'; diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 39bee16..f616ba8 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -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 { {} }); diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 59b5eee..d94f3f0 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -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!