From 7d4011216825529dadbbb304afd2477fcc4b28e3 Mon Sep 17 00:00:00 2001 From: Tatsuhiko Miyagawa Date: Mon, 5 Sep 2022 08:47:12 -0700 Subject: [PATCH] 1.0050 --- Changes | 4 ++++ META.json | 2 +- Makefile.PL | 2 +- lib/Plack.pm | 2 +- lib/Plack/Request.pm | 2 +- lib/Plack/Response.pm | 2 +- 6 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Changes b/Changes index 9f298f47..6be20501 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,10 @@ Go to http://github.com/plack/Plack/issues for the roadmap and known issues. {{$NEXT}} +1.0050 2022-09-05 08:46:44 PDT + [BUG FIXES] + - Revert #660 where POST requests failed when Middleware::Static was used with a code in `path` (#683) + 1.0049 2022-09-01 10:43:42 PDT [IMPROVEMENTS] - Fix typos in docs #659 diff --git a/META.json b/META.json index ee612781..92c77f2e 100644 --- a/META.json +++ b/META.json @@ -105,7 +105,7 @@ "web" : "https://github.com/plack/Plack" } }, - "version" : "1.0049", + "version" : "1.0050", "x_authority" : "cpan:MIYAGAWA", "x_contributors" : [ "Aaron Trevena ", diff --git a/Makefile.PL b/Makefile.PL index 6cffbbc6..4c6841ab 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -50,7 +50,7 @@ my %WriteMakefileArgs = ( "Test::More" => "0.88", "Test::Requires" => 0 }, - "VERSION" => "1.0049", + "VERSION" => "1.0050", "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" } diff --git a/lib/Plack.pm b/lib/Plack.pm index 2ab5ace7..a31ad2e6 100644 --- a/lib/Plack.pm +++ b/lib/Plack.pm @@ -3,7 +3,7 @@ package Plack; use strict; use warnings; use 5.008_001; -our $VERSION = '1.0049'; +our $VERSION = '1.0050'; 1; __END__ diff --git a/lib/Plack/Request.pm b/lib/Plack/Request.pm index 9366b5ab..2b094545 100644 --- a/lib/Plack/Request.pm +++ b/lib/Plack/Request.pm @@ -2,7 +2,7 @@ package Plack::Request; use strict; use warnings; use 5.008_001; -our $VERSION = '1.0049'; +our $VERSION = '1.0050'; use HTTP::Headers::Fast; use Carp (); diff --git a/lib/Plack/Response.pm b/lib/Plack/Response.pm index 581f4e0e..cbb14309 100644 --- a/lib/Plack/Response.pm +++ b/lib/Plack/Response.pm @@ -1,7 +1,7 @@ package Plack::Response; use strict; use warnings; -our $VERSION = '1.0049'; +our $VERSION = '1.0050'; use Plack::Util::Accessor qw(body status); use Carp ();