Skip to content

Commit

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

diff --git a/Changes b/Changes
index bd48848..a60417d 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.9966  Tue Jan 25 12:00:25 PST 2011
+        - Fixed a memory leak in SimploLogger (vti)
+        - Support %v in AccessLog (Ranguard)
+        - Force set CONTENT_LENGTH in req_to_psgi when $content is given to HTTP::Request (timbunce) plack#150
+        - Fixed a case where SCRIPT_NAME and PATH_INFO can both get empty in req_to_psgi (doy) plack#163
+
 0.9965  Mon Jan 24 23:08:04 PST 2011
         - Requires Devel::StackTrace 0.11
         - Fixed a regression where StackTrace wasn't able to get the thrown exception as an error message (hachi)
  • Loading branch information
miyagawa committed Jan 25, 2011
1 parent fb48a98 commit b0b9e43
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 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.9966 Tue Jan 25 12:00:25 PST 2011
- Fixed a memory leak in SimploLogger (vti)
- Support %v in AccessLog (Ranguard)
- Force set CONTENT_LENGTH in req_to_psgi when $content is given to HTTP::Request (timbunce) #150
- Fixed a case where SCRIPT_NAME and PATH_INFO can both get empty in req_to_psgi (doy) #163

0.9965 Mon Jan 24 23:08:04 PST 2011
- Requires Devel::StackTrace 0.11
- Fixed a regression where StackTrace wasn't able to get the thrown exception as an error message (hachi)
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -137,6 +137,8 @@ share/baybridge.jpg
share/face.jpg
t/00_compile.t
t/FCGIUtils.pm
t/HTTP-Message-PSGI/content_length.t
t/HTTP-Message-PSGI/path_info.t
t/HTTP-Message-PSGI/utf8_req.t
t/HTTP-Server-PSGI/post.t
t/Plack-Builder/mount.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.9965';
our $VERSION = '0.9966';
$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.9965';
our $VERSION = '0.9966';
$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.9965';
our $VERSION = '0.9966';
$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.9965';
our $VERSION = '0.9966';
$VERSION = eval $VERSION;

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

0 comments on commit b0b9e43

Please sign in to comment.