Decreased version number from 0.07 to 0.06_01.
Norbert Buchmuller [Thu, 1 Apr 2010 19:09:28 +0000 (19:09 +0000)]
Added NEXT -> MRO::Compat switch to Changes.
Mentioned RT tickets in Changes.

Changes
lib/Catalyst/Plugin/RequireSSL.pm

diff --git a/Changes b/Changes
index eb2bdf6..80907e3 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,13 +1,14 @@
 Revision history for Perl extension Catalyst::Plugin::RequireSSL
 
-0.07
+0.06999_01
        - Converted to use Module::Install instead of Module::Build.
         - Removed unused 'default' method from the app (triggered a deprecation warning).
         - Fix Perl Critic test for hard tabs (t0m)
         - Fix POD coverage (t0m)
         - Added allow_ssl() (norbi)
         - Added detach_on_redirect config option (norbi)
-        - Cleaned up _redirect_uri() (norbi)
+        - Cleaned up _redirect_uri() (RT #38996) (norbi)
+       - Switch from NEXT to MRO::Compat (RT #48328) (t0m)
 
 0.06    2007-03-06 11:00:00
         - Added no_cache config option to support wildcard SSL certificates.
index 1b33bb7..b7f39ea 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use base qw/Class::Accessor::Fast/;
 use MRO::Compat;
 
-our $VERSION = '0.07';
+our $VERSION = '0.06_01';
 
 __PACKAGE__->mk_accessors( qw/_require_ssl _allow_ssl _ssl_strip_output/ );