From: Marcus Ramberg Date: Wed, 4 Feb 2009 20:05:38 +0000 (+0000) Subject: Prepare for development release of runtime X-Git-Tag: 5.8000_06^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=46b6daa37c6295df82197dbdd66ab40d82ca13fa Prepare for development release of runtime --- diff --git a/Changes b/Changes index 534ccbf..c3e90a5 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ # This file documents the revision history for Perl extension Catalyst. +5.8000_06 2009-02-04 21:00 - Disallow writing to config after setup (rafl) - Disallow calling setup more than once (rafl) - Documentation fix regarding overloading of Engine and Dispatcher diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 6f111d9..bfedbca 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -77,7 +77,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.8000_05'; +our $VERSION = '5.8000_06'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 63fd1f2..e68266c 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008001; } # Remember to update this in Catalyst as well! -our $VERSION='5.8000_05'; +our $VERSION='5.8000_06'; $VERSION= eval $VERSION;