Skip to content

Commit

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

diff --git a/Changes b/Changes
index 3646232..97a9d3b 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,11 @@ 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.9978  Wed May  4 11:29:12 PDT 2011
+    [TEST FIXES]
+        - Fixed a failing output_encoding.t because of FCGI dependencies
+        - Improved Plack::Test::Suite documentation
+
 0.9977  Sun May  1 12:16:08 PDT 2011
     [BUG FIXES]
         - Fixed ConditionalGET to not die with streaming interface (reported by Paul Ervamaa)
  • Loading branch information
miyagawa committed May 4, 2011
1 parent e54ed52 commit 9292516
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ Revision history for Perl extension Plack


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


0.9978 Wed May 4 11:29:12 PDT 2011
[TEST FIXES]
- Fixed a failing output_encoding.t because of FCGI dependencies
- Improved Plack::Test::Suite documentation

0.9977 Sun May 1 12:16:08 PDT 2011 0.9977 Sun May 1 12:16:08 PDT 2011
[BUG FIXES] [BUG FIXES]
- Fixed ConditionalGET to not die with streaming interface (reported by Paul Ervamaa) - Fixed ConditionalGET to not die with streaming interface (reported by Paul Ervamaa)
Expand Down
4 changes: 1 addition & 3 deletions README
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -89,9 +89,7 @@ MODULES AND UTILITIES
standard HTTP::Request and HTTP::Response pair with simple callbacks. standard HTTP::Request and HTTP::Response pair with simple callbacks.


Plack::Test::Suite Plack::Test::Suite
Plack::Test::Suite is a test suite to test a new PSGI server backend. The Plack::Test::Suite is a test suite to test a new PSGI server backend.
$ENV{PLACK_TEST_SCRIPT_NAME} should be set if the backend uses a prefix to
route requests (see examples in t/Plack-Handler/cgi.t and t/Plack-Handler/fcgi.t).


CONTRIBUTING CONTRIBUTING
Patches and Bug Fixes Patches and Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Plack;
use strict; use strict;
use warnings; use warnings;
use 5.008_001; use 5.008_001;
our $VERSION = '0.9977'; our $VERSION = '0.9978';
$VERSION = eval $VERSION; $VERSION = eval $VERSION;


1; 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Request.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Plack::Request;
use strict; use strict;
use warnings; use warnings;
use 5.008_001; use 5.008_001;
our $VERSION = '0.9977'; our $VERSION = '0.9978';
$VERSION = eval $VERSION; $VERSION = eval $VERSION;


use HTTP::Headers; use HTTP::Headers;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,7 @@
package Plack::Response; package Plack::Response;
use strict; use strict;
use warnings; use warnings;
our $VERSION = '0.9977'; our $VERSION = '0.9978';
$VERSION = eval $VERSION; $VERSION = eval $VERSION;


use Plack::Util::Accessor qw(body status); use Plack::Util::Accessor qw(body status);
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Server/ServerSimple.pm
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
package Plack::Server::ServerSimple; package Plack::Server::ServerSimple;
use strict; use strict;
our $VERSION = '0.9977'; our $VERSION = '0.9978';
$VERSION = eval $VERSION; $VERSION = eval $VERSION;


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

0 comments on commit 9292516

Please sign in to comment.