Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.9920.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 902033b..d6591ac 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,12 @@ Revision history for Perl extension Plack

 Take a look at http://github.com/miyagawa/Plack/issues for the planned changes before 1.0 release.

+0.9920  Thu Mar 18 23:48:06 PDT 2010
+        - Fixed URL path prefix matching in URLMap (hiratara)
+        - Fixed Plack::Request->content on GET with FastCGI servers (sunnavy)
+        - Added new middleware Middleware::Head
+        - Fixed localization bug in Plack-Util/load.t
+
 0.9919  Wed Mar 17 22:50:09 PDT 2010
         - Properly rethrow .psgi compilation errors
  • Loading branch information
miyagawa committed Mar 19, 2010
1 parent 27c90e5 commit 29e86d0
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,12 @@ Revision history for Perl extension Plack

Take a look at http://github.com/miyagawa/Plack/issues for the planned changes before 1.0 release.

0.9920 Thu Mar 18 23:48:06 PDT 2010
- Fixed URL path prefix matching in URLMap (hiratara)
- Fixed Plack::Request->content on GET with FastCGI servers (sunnavy)
- Added new middleware Middleware::Head
- Fixed localization bug in Plack-Util/load.t

0.9919 Wed Mar 17 22:50:09 PDT 2010
- Properly rethrow .psgi compilation errors

Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -82,6 +82,7 @@ lib/Plack/Middleware/ConditionalGET.pm
lib/Plack/Middleware/ContentLength.pm
lib/Plack/Middleware/ContentMD5.pm
lib/Plack/Middleware/ErrorDocument.pm
lib/Plack/Middleware/Head.pm
lib/Plack/Middleware/HTTPExceptions.pm
lib/Plack/Middleware/JSONP.pm
lib/Plack/Middleware/Lint.pm
Expand Down Expand Up @@ -168,6 +169,7 @@ t/Plack-Middleware/error_document.t
t/Plack-Middleware/errors/404.html
t/Plack-Middleware/errors/500.html
t/Plack-Middleware/file.t
t/Plack-Middleware/head.t
t/Plack-Middleware/htpasswd
t/Plack-Middleware/httpexceptions.t
t/Plack-Middleware/httpexceptions_streaming.t
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack.pm
Expand Up @@ -3,7 +3,7 @@ package Plack;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '0.9919';
our $VERSION = '0.9920';
$VERSION = eval $VERSION;

1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Request.pm
Expand Up @@ -2,7 +2,7 @@ package Plack::Request;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '0.9919';
our $VERSION = '0.9920';
$VERSION = eval $VERSION;

use HTTP::Headers;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
@@ -1,7 +1,7 @@
package Plack::Response;
use strict;
use warnings;
our $VERSION = '0.9919';
our $VERSION = '0.9920';
$VERSION = eval $VERSION;

use Plack::Util::Accessor qw(body status);
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Server/ServerSimple.pm
@@ -1,6 +1,6 @@
package Plack::Server::ServerSimple;
use strict;
our $VERSION = '0.9919';
our $VERSION = '0.9920';
$VERSION = eval $VERSION;

use parent qw(Plack::Handler::HTTP::Server::Simple);
Expand Down
1 change: 0 additions & 1 deletion t/Plack-Util/load.t
Expand Up @@ -40,7 +40,6 @@ use Test::More;
like $@, qr/Global symbol/;
}


{
eval { Plack::Util::load_psgi("t/Plack-Util/nonexistent.psgi") };
unlike $@, qr/Died/;
Expand Down

0 comments on commit 29e86d0

Please sign in to comment.