Skip to content

Commit

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

diff --git a/Changes b/Changes
index 3ca806e..5c78463 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,15 @@ 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.9939  Fri Jul  2 17:56:10 PDT 2010
+        - Improved middleware documentation (miyagawa, leedo, bobtfish)
+        - Added a test about Transfer-Encoding with Content-Length: 0 (chiba)
+        - Fixed NullLogger middleware (haarg)
+        - Fixed Plack::Util inline object's can() (haarg)
+        - Middleware::HTTPException now honors ->location method of the exception (frodwith)
+        - Middleware::AccessLog: Fixes %D to be microsec so it's compatible to Apache plack#119 (cho45)
+        - Fixed Plack::Request->uri when PATH_INFO conatins URI reserved characters plack#118 (leedo)
+
 0.9938  Sun May 23 17:13:05 PDT 2010
         - ErrorDocument: Added Content-Length to error responses (hachi)
         - Improved docs about conditional middleware loading
  • Loading branch information
miyagawa committed Jul 3, 2010
1 parent a01c607 commit 1b6f3e6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,15 @@ 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.9939 Fri Jul 2 17:56:10 PDT 2010
- Improved middleware documentation (miyagawa, leedo, bobtfish)
- Added a test about Transfer-Encoding with Content-Length: 0 (chiba)
- Fixed NullLogger middleware (haarg)
- Fixed Plack::Util inline object's can() (haarg)
- Middleware::HTTPException now honors ->location method of the exception (frodwith)
- Middleware::AccessLog: Fixes %D to be microsec so it's compatible to Apache #119 (cho45)
- Fixed Plack::Request->uri when PATH_INFO conatins URI reserved characters #118 (leedo)

0.9938 Sun May 23 17:13:05 PDT 2010
- ErrorDocument: Added Content-Length to error responses (hachi)
- Improved docs about conditional middleware loading
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST
Expand Up @@ -28,7 +28,6 @@ eg/dot-psgi/static/index.html
eg/dot-psgi/static/test.css
eg/dot-psgi/static/test.js
eg/dot-psgi/twitter-stream.psgi
inc/Module/AutoInstall.pm
inc/Module/Install.pm
inc/Module/Install/AuthorTests.pm
inc/Module/Install/AutoInstall.pm
Expand Down Expand Up @@ -228,6 +227,7 @@ t/Plack-Request/new.t
t/Plack-Request/parameters.t
t/Plack-Request/params.t
t/Plack-Request/path_info.t
t/Plack-Request/path_info_escaped.t
t/Plack-Request/readbody.t
t/Plack-Request/request_uri.t
t/Plack-Request/upload-basename.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.9938';
our $VERSION = '0.9939';
$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.9938';
our $VERSION = '0.9939';
$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.9938';
our $VERSION = '0.9939';
$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.9938';
our $VERSION = '0.9939';
$VERSION = eval $VERSION;

use parent qw(Plack::Handler::HTTP::Server::Simple);
Expand Down

0 comments on commit 1b6f3e6

Please sign in to comment.