Skip to content

Commit

Permalink
1.0043
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Feb 22, 2017
1 parent de5112a commit e9264e2
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ Go to http://github.com/plack/Plack/issues for the roadmap and known issues.

{{$NEXT}}

1.0043 2017-02-21 19:00:31 PST
[IMPROVEMENTS]
- Fixed typo in docs #578 #584
- Remove test that expects cookie to be delimited by comma #573
- Stop upper-casing all header keys in Plack::Request->headers #585

1.0042 2016-09-28 22:37:33 PDT
[BUG FIXES]
- Revert: Allow passing an already-open listen socket to HTTP::Server::PSGI #550
Expand Down
9 changes: 5 additions & 4 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.16, Dist::Zilla version 6.007, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Dist::Milla version v1.0.17, Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -35,7 +35,7 @@
},
"develop" : {
"requires" : {
"Dist::Milla" : "v1.0.16",
"Dist::Milla" : "v1.0.17",
"Test::Pod" : "1.41"
}
},
Expand Down Expand Up @@ -105,7 +105,7 @@
"web" : "https://github.com/plack/Plack"
}
},
"version" : "1.0042",
"version" : "1.0043",
"x_authority" : "cpan:MIYAGAWA",
"x_contributors" : [
"Aaron Trevena <aaron.trevena@gmail.com>",
Expand Down Expand Up @@ -139,6 +139,7 @@
"David E. Wheeler <david@justatheory.com>",
"David Schmidt <mail@davidschmidt.at>",
"David Steinbrunner <dsteinbrunner@MountainBook-Pro.local>",
"dmaestro <dmaestro@users.noreply.github.com>",
"Eduardo Arino de la Rubia <earino@rent.com>",
"Eric Johnson <eric.git@iijo.org>",
"Eugen Konkov <kes-kes@yandex.ru>",
Expand Down Expand Up @@ -230,6 +231,6 @@
"Yuval Kogman <nothingmuch@woobling.org>",
"\u5510\u9cf3 <audreyt@audreyt.org>"
],
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0217"
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0227"
}

4 changes: 2 additions & 2 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.007.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
use strict;
use warnings;

Expand Down Expand Up @@ -50,7 +50,7 @@ my %WriteMakefileArgs = (
"Test::More" => "0.88",
"Test::Requires" => 0
},
"VERSION" => "1.0042",
"VERSION" => "1.0043",
"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.0042';
our $VERSION = '1.0043';

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.0042';
our $VERSION = '1.0043';

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.0042';
our $VERSION = '1.0043';

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

0 comments on commit e9264e2

Please sign in to comment.