Skip to content

Commit

Permalink
1.0050
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Sep 5, 2022
1 parent 6c93714 commit 7d40112
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"web" : "https://github.com/plack/Plack"
}
},
"version" : "1.0049",
"version" : "1.0050",
"x_authority" : "cpan:MIYAGAWA",
"x_contributors" : [
"Aaron Trevena <aaron.trevena@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
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.0049';
our $VERSION = '1.0050';

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.0049';
our $VERSION = '1.0050';

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.0049';
our $VERSION = '1.0050';

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

0 comments on commit 7d40112

Please sign in to comment.