From: John Napiorkowski Date: Thu, 19 Dec 2013 14:20:42 +0000 (-0600) Subject: remove regexp for good X-Git-Tag: 5.90059_001^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=78acc1f779d3c6992f3331a7bf61b3febc255162 remove regexp for good --- diff --git a/Changes b/Changes index fa0783d..bfc0053 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,15 @@ # This file documents the revision history for Perl extension Catalyst. + - Announcing the repo is not open for development of Perl Catalyst 'Runner' + - http://questhub.io/realm/perl/explore/latest/tag/runner + +5.90059_001 - 2013-12-19 + - Removed deprecated Regexp dispatch type from dependency list. If you are + using Regex[p] type dispatching you need to add the standalone distribution + 'Catalyst::DispatchType::Regex' to you build system NOW or you application + will be broken. + + 5.90052 - 2013-12-18 - Fixed first block of startup debug messages missing when using a custom diff --git a/Makefile.PL b/Makefile.PL index 33a73a6..3d06b69 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -76,10 +76,6 @@ requires 'Hash::MultiValue'; requires 'Plack::Request::Upload'; requires 'CGI::Struct'; -# Install the standalone Regex dispatch modules in order to ease the -# deprecation transition -requires 'Catalyst::DispatchType::Regex' => '5.90021'; - test_requires 'Test::Fatal'; test_requires 'Test::More' => '0.88'; test_requires 'Data::Dump'; diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 4aa3601..671960f 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -120,7 +120,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # Remember to update this in Catalyst::Runtime as well! -our $VERSION = '5.90052'; +our $VERSION = '5.90059_001'; sub import { my ( $class, @arguments ) = @_; diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 0d8dfed..79ab272 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008003; } # Remember to update this in Catalyst as well! -our $VERSION = '5.90052'; +our $VERSION = '5.90059_001'; =head1 NAME diff --git a/lib/Catalyst/Upgrading.pod b/lib/Catalyst/Upgrading.pod index 03a24ab..11d0198 100644 --- a/lib/Catalyst/Upgrading.pod +++ b/lib/Catalyst/Upgrading.pod @@ -2,6 +2,18 @@ Catalyst::Upgrading - Instructions for upgrading to the latest Catalyst +=head1 Upgrading to Catalyst 5.90060 + +Starting in the v5.90059_001 development release, the regexp dispatch type is +no longer automatically included as a dependency. If you are still using this +dispatch type, you need to add L into your build +system. + +The standalone distribution of Regexp will be supported for the time being, but +should we find that supporting it prevents us from moving L forward +in necessary ways, we reserve the right to drop that support. It is highly +recommended that you use this last stage of deprecation to change your code. + =head1 Upgrading to Catalyst 5.90040 =head2 Catalyst::Plugin::Unicode::Encoding is now core