diff --git a/Changes b/Changes index 902033b81..d6591ac30 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 diff --git a/MANIFEST b/MANIFEST index 8e5cf7605..544236d4f 100644 --- a/MANIFEST +++ b/MANIFEST @@ -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 @@ -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 diff --git a/lib/Plack.pm b/lib/Plack.pm index 45724b45b..6c7dcfa47 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 = '0.9919'; +our $VERSION = '0.9920'; $VERSION = eval $VERSION; 1; diff --git a/lib/Plack/Request.pm b/lib/Plack/Request.pm index d853cbdb6..817b73bec 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 = '0.9919'; +our $VERSION = '0.9920'; $VERSION = eval $VERSION; use HTTP::Headers; diff --git a/lib/Plack/Response.pm b/lib/Plack/Response.pm index fe08c151b..bd9fed5ed 100644 --- a/lib/Plack/Response.pm +++ b/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); diff --git a/lib/Plack/Server/ServerSimple.pm b/lib/Plack/Server/ServerSimple.pm index d13be9c46..79ce61533 100644 --- a/lib/Plack/Server/ServerSimple.pm +++ b/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); diff --git a/t/Plack-Util/load.t b/t/Plack-Util/load.t index 910e275c5..90c874766 100644 --- a/t/Plack-Util/load.t +++ b/t/Plack-Util/load.t @@ -40,7 +40,6 @@ use Test::More; like $@, qr/Global symbol/; } - { eval { Plack::Util::load_psgi("t/Plack-Util/nonexistent.psgi") }; unlike $@, qr/Died/;