Skip to content

Commit

Permalink
Prepare for 3.01 release: Build.PL fix, MANIFEST fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstos committed Jun 24, 2011
1 parent 82a6b19 commit dc32837
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Build.PL
Expand Up @@ -17,13 +17,15 @@ my $build = $build_pkg->new(
'version' => 0.82,
'CGI::Application' => '4.50', # For native PSGI support.
'HTTP::Exception' => 0,
'Exception::Class' => 1.2,
'Exception::Class::TryCatch' => 0,
'Try::Tiny' => 0,
},
build_requires => {
'CGI::PSGI' => 1, # recommended by CGI::Application, but not required. We still need it at least to test with.
'Test::More' => 0,
'Test::LongString' => 0,
'Plack' => 0.9956, # For Plack::Test,
'Plack::Test' => 0.9956,
$have_apache_test ? ( 'Apache::Test' => 0 ) : (),
},
);
Expand Down
7 changes: 7 additions & 0 deletions Changes
@@ -1,5 +1,12 @@
Revision history for Perl extension CGI::Application::Dispatch.

3.01 Jun 23, 2011
No code changes.

[INTERNALS]
- Fixed Build.PL issue that was causing tests to fail in a lot of environments. (Brad Oaks)
- cleaned up MANIFEST

3.00 Jun 16, 2011
[FEATURES]
- PSGI support is improved. CGI::Application::Dispatch is now been
Expand Down
1 change: 0 additions & 1 deletion MANIFEST
Expand Up @@ -20,4 +20,3 @@ t/lib/MyApp/Module/Bad.pm
t/lib/MyApp/Module/Name.pm
t/lib/MyApp/Module/Rest.pm
t/psgi.t
TODO
2 changes: 1 addition & 1 deletion lib/CGI/Application/Dispatch.pm
Expand Up @@ -4,7 +4,7 @@ use warnings;
use Carp qw(carp cluck);
use Exception::Class::TryCatch qw(catch);

our $VERSION = '3.00';
our $VERSION = '3.01';
our $DEBUG = 0;

BEGIN {
Expand Down

0 comments on commit dc32837

Please sign in to comment.