Skip to content

Commit

Permalink
1.0033
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Oct 23, 2014
1 parent 4b9480b commit 4a200b6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 8 deletions.
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ Go to http://github.com/plack/Plack/issues for the roadmap and known issues.

{{$NEXT}}

1.0033 2014-10-23 12:33:18 PDT
[BUG FIXES]
- Lint: Fix error messages (fgabolde) #473
- ErrorDocument: Reverse the $done filtering (nwellnhof) #474

[IMPROVEMENTS]
- StackTrace: Improve the accuracy of thrown exceptions in case where an excpetion
is thrown in destructors (nwellnhof) #476

1.0032 2014-10-04 11:13:24 PDT
[IMPROVEMENTS]
- Support Server::Starter in FCGI handler (yuryu) #435
Expand Down
5 changes: 3 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Tatsuhiko Miyagawa"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Milla version v1.0.8, Dist::Zilla version 5.020, CPAN::Meta::Converter version 2.142690",
"generated_by" : "Dist::Milla version v1.0.8, Dist::Zilla version 5.021, CPAN::Meta::Converter version 2.142690",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -96,7 +96,7 @@
"web" : "https://github.com/plack/Plack"
}
},
"version" : "1.0032",
"version" : "1.0033",
"x_authority" : "cpan:MIYAGAWA",
"x_contributors" : [
"Aaron Trevena <aaron.trevena@gmail.com>",
Expand All @@ -122,6 +122,7 @@
"David Steinbrunner <dsteinbrunner@MountainBook-Pro.local>",
"Eduardo Arino de la Rubia <earino@rent.com>",
"Eric Johnson <eric.git@iijo.org>",
"Fabrice Gabolde <fabrice.gabolde@gmail.com>",
"Florian Ragwitz <rafl@debian.org>",
"Graham Knop <haarg@haarg.org>",
"Grant McLean <grant@catalyst.net.nz>",
Expand Down
9 changes: 6 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.020.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.021.
use strict;
use warnings;

use 5.008001;

use ExtUtils::MakeMaker ;
use ExtUtils::MakeMaker;

use File::ShareDir::Install;
$File::ShareDir::Install::INCLUDE_DOTFILES = 1;
Expand All @@ -25,6 +25,7 @@ my %WriteMakefileArgs = (
"script/plackup"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008001",
"NAME" => "Plack",
"PREREQ_PM" => {
"Apache::LogFormat::Compiler" => "0.12",
Expand All @@ -47,7 +48,7 @@ my %WriteMakefileArgs = (
"Test::More" => "0.88",
"Test::Requires" => 0
},
"VERSION" => "1.0032",
"VERSION" => "1.0033",
"test" => {
"TESTS" => "t/*.t t/HTTP-Message-PSGI/*.t t/HTTP-Server-PSGI/*.t t/Plack-Builder/*.t t/Plack-HTTPParser-PP/*.t t/Plack-Handler/*.t t/Plack-Loader/*.t t/Plack-MIME/*.t t/Plack-Middleware/*.t t/Plack-Middleware/cascade/*.t t/Plack-Middleware/recursive/*.t t/Plack-Middleware/stacktrace/*.t t/Plack-Request/*.t t/Plack-Response/*.t t/Plack-Runner/*.t t/Plack-TempBuffer/*.t t/Plack-Test/*.t t/Plack-Util/*.t"
}
Expand All @@ -58,7 +59,9 @@ my %FallbackPrereqs = (
"Apache::LogFormat::Compiler" => "0.12",
"Devel::StackTrace" => "1.23",
"Devel::StackTrace::AsHTML" => "0.11",
"ExtUtils::MakeMaker" => 0,
"File::ShareDir" => "1.00",
"File::ShareDir::Install" => "0.06",
"Filesys::Notify::Simple" => 0,
"HTTP::Body" => "1.06",
"HTTP::Message" => "5.814",
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Plack;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '1.0032';
our $VERSION = '1.0033';

1;
__END__
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Request.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Plack::Request;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '1.0032';
our $VERSION = '1.0033';

use HTTP::Headers;
use Carp ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package Plack::Response;
use strict;
use warnings;
our $VERSION = '1.0032';
our $VERSION = '1.0033';

use Plack::Util::Accessor qw(body status);
use Carp ();
Expand Down

0 comments on commit 4a200b6

Please sign in to comment.