Skip to content

Commit

Permalink
1.0051
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Jan 5, 2024
1 parent 03ac165 commit 0b8d671
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Go to http://github.com/plack/Plack/issues for the roadmap and known issues.

{{$NEXT}}

1.0051 2024-01-05 15:09:37 PST
[BUG FIXES]
- Fix a bug where $req->headers can pick up non-PSGI header values from environment #703

Expand Down
13 changes: 6 additions & 7 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.21, Dist::Zilla version 6.025, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Dist::Milla version v1.0.22, Dist::Zilla version 6.025, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand All @@ -28,14 +28,11 @@
"requires" : {
"ExtUtils::MakeMaker" : "0",
"File::ShareDir::Install" : "0.06"
},
"suggests" : {
"JSON::PP" : "2.27300"
}
},
"develop" : {
"requires" : {
"Dist::Milla" : "v1.0.21",
"Dist::Milla" : "v1.0.22",
"Test::Pod" : "1.41"
}
},
Expand All @@ -59,7 +56,7 @@
"URI" : "1.59",
"WWW::Form::UrlEncoded" : "0.23",
"parent" : "0",
"perl" : "5.008001"
"perl" : "5.012000"
},
"suggests" : {
"CGI::Compile" : "0",
Expand Down Expand Up @@ -105,7 +102,7 @@
"web" : "https://github.com/plack/Plack"
}
},
"version" : "1.0050",
"version" : "1.0051",
"x_authority" : "cpan:MIYAGAWA",
"x_contributors" : [
"Aaron Trevena <aaron.trevena@gmail.com>",
Expand Down Expand Up @@ -223,13 +220,15 @@
"Scott S. McCoy <smccoy@saymedia.com>",
"Shawn M Moore <sartak@gmail.com>",
"Shoichi Kaji <skaji@cpan.org>",
"Slaven Rezic <slaven.rezic@idealo.de>",
"smcmurray <smcmurray@localhost.localdomain>",
"Stephen Clouse <stephenclouse@gmail.com>",
"Stevan Little <stevan.little@iinteractive.com>",
"Stig Palmquist <git@stig.io>",
"Stuart A Johnston <saj_git@thecommune.net>",
"Takeshi OKURA <okura3@gmail.com>",
"Tatsuhiko Miyagawa <miyagawa@bulknews.net>",
"Tatsuhiko Miyagawa <tmiyagawa@fastly.com>",
"The Dumb Terminal <thedumbterminal@users.noreply.github.com>",
"Thomas Klausner <domm@plix.at>",
"Thomas Sibley <tsibley@cpan.org>",
Expand Down
6 changes: 3 additions & 3 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use strict;
use warnings;

use 5.008001;
use 5.012000;

use ExtUtils::MakeMaker;

Expand All @@ -24,7 +24,7 @@ my %WriteMakefileArgs = (
"script/plackup"
],
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.008001",
"MIN_PERL_VERSION" => "5.012000",
"NAME" => "Plack",
"PREREQ_PM" => {
"Apache::LogFormat::Compiler" => "0.33",
Expand All @@ -50,7 +50,7 @@ my %WriteMakefileArgs = (
"Test::More" => "0.88",
"Test::Requires" => 0
},
"VERSION" => "1.0050",
"VERSION" => "1.0051",
"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 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.0050';
our $VERSION = '1.0051';

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.0050';
our $VERSION = '1.0051';

use HTTP::Headers::Fast;
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.0050';
our $VERSION = '1.0051';

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

0 comments on commit 0b8d671

Please sign in to comment.