Skip to content

Commit 0b8d671

Browse files
committed
1.0051
1 parent 03ac165 commit 0b8d671

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

Changes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Go to http://github.com/plack/Plack/issues for the roadmap and known issues.
22

33
{{$NEXT}}
4+
5+
1.0051 2024-01-05 15:09:37 PST
46
[BUG FIXES]
57
- Fix a bug where $req->headers can pick up non-PSGI header values from environment #703
68

META.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Tatsuhiko Miyagawa"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Dist::Milla version v1.0.21, Dist::Zilla version 6.025, CPAN::Meta::Converter version 2.150010",
7+
"generated_by" : "Dist::Milla version v1.0.22, Dist::Zilla version 6.025, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"perl_5"
1010
],
@@ -28,14 +28,11 @@
2828
"requires" : {
2929
"ExtUtils::MakeMaker" : "0",
3030
"File::ShareDir::Install" : "0.06"
31-
},
32-
"suggests" : {
33-
"JSON::PP" : "2.27300"
3431
}
3532
},
3633
"develop" : {
3734
"requires" : {
38-
"Dist::Milla" : "v1.0.21",
35+
"Dist::Milla" : "v1.0.22",
3936
"Test::Pod" : "1.41"
4037
}
4138
},
@@ -59,7 +56,7 @@
5956
"URI" : "1.59",
6057
"WWW::Form::UrlEncoded" : "0.23",
6158
"parent" : "0",
62-
"perl" : "5.008001"
59+
"perl" : "5.012000"
6360
},
6461
"suggests" : {
6562
"CGI::Compile" : "0",
@@ -105,7 +102,7 @@
105102
"web" : "https://github.com/plack/Plack"
106103
}
107104
},
108-
"version" : "1.0050",
105+
"version" : "1.0051",
109106
"x_authority" : "cpan:MIYAGAWA",
110107
"x_contributors" : [
111108
"Aaron Trevena <[email protected]>",
@@ -223,13 +220,15 @@
223220
"Scott S. McCoy <[email protected]>",
224221
"Shawn M Moore <[email protected]>",
225222
"Shoichi Kaji <[email protected]>",
223+
"Slaven Rezic <[email protected]>",
226224
"smcmurray <[email protected]>",
227225
"Stephen Clouse <[email protected]>",
228226
"Stevan Little <[email protected]>",
229227
"Stig Palmquist <[email protected]>",
230228
"Stuart A Johnston <[email protected]>",
231229
"Takeshi OKURA <[email protected]>",
232230
"Tatsuhiko Miyagawa <[email protected]>",
231+
"Tatsuhiko Miyagawa <[email protected]>",
233232
"The Dumb Terminal <[email protected]>",
234233
"Thomas Klausner <[email protected]>",
235234
"Thomas Sibley <[email protected]>",

Makefile.PL

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
use strict;
33
use warnings;
44

5-
use 5.008001;
5+
use 5.012000;
66

77
use ExtUtils::MakeMaker;
88

@@ -24,7 +24,7 @@ my %WriteMakefileArgs = (
2424
"script/plackup"
2525
],
2626
"LICENSE" => "perl",
27-
"MIN_PERL_VERSION" => "5.008001",
27+
"MIN_PERL_VERSION" => "5.012000",
2828
"NAME" => "Plack",
2929
"PREREQ_PM" => {
3030
"Apache::LogFormat::Compiler" => "0.33",
@@ -50,7 +50,7 @@ my %WriteMakefileArgs = (
5050
"Test::More" => "0.88",
5151
"Test::Requires" => 0
5252
},
53-
"VERSION" => "1.0050",
53+
"VERSION" => "1.0051",
5454
"test" => {
5555
"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"
5656
}

lib/Plack.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package Plack;
33
use strict;
44
use warnings;
55
use 5.008_001;
6-
our $VERSION = '1.0050';
6+
our $VERSION = '1.0051';
77

88
1;
99
__END__

lib/Plack/Request.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Plack::Request;
22
use strict;
33
use warnings;
44
use 5.008_001;
5-
our $VERSION = '1.0050';
5+
our $VERSION = '1.0051';
66

77
use HTTP::Headers::Fast;
88
use Carp ();

lib/Plack/Response.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package Plack::Response;
22
use strict;
33
use warnings;
4-
our $VERSION = '1.0050';
4+
our $VERSION = '1.0051';
55

66
use Plack::Util::Accessor qw(body status);
77
use Carp ();

0 commit comments

Comments
 (0)