Skip to content

Commit

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

diff --git a/Changes b/Changes
index 4bae0fd..0f0ab40 100644
--- a/Changes
+++ b/Changes
@@ -2,7 +2,7 @@ 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.9929
+0.9929  Wed Mar 31 00:33:10 PDT 2010
         - Middleware::JSONP: Simplified code and does not support IO response body type
         - fcgi.t: skip tests with lighttpd < 1.4.17 per CPAN Testers #7040400
  • Loading branch information
miyagawa committed Mar 31, 2010
1 parent 14afcd1 commit 98d2d03
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Changes
Expand Up @@ -2,7 +2,7 @@ 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.9929 0.9929 Wed Mar 31 00:33:10 PDT 2010
- Middleware::JSONP: Simplified code and does not support IO response body type - Middleware::JSONP: Simplified code and does not support IO response body type
- fcgi.t: skip tests with lighttpd < 1.4.17 per CPAN Testers #7040400 - fcgi.t: skip tests with lighttpd < 1.4.17 per CPAN Testers #7040400


Expand Down
2 changes: 1 addition & 1 deletion lib/Plack.pm
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.9928'; our $VERSION = '0.9929';
$VERSION = eval $VERSION; $VERSION = eval $VERSION;


1; 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 strict;
use warnings; use warnings;
use 5.008_001; use 5.008_001;
our $VERSION = '0.9928'; our $VERSION = '0.9929';
$VERSION = eval $VERSION; $VERSION = eval $VERSION;


use HTTP::Headers; use HTTP::Headers;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Response.pm
@@ -1,7 +1,7 @@
package Plack::Response; package Plack::Response;
use strict; use strict;
use warnings; use warnings;
our $VERSION = '0.9928'; our $VERSION = '0.9929';
$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
@@ -1,6 +1,6 @@
package Plack::Server::ServerSimple; package Plack::Server::ServerSimple;
use strict; use strict;
our $VERSION = '0.9928'; our $VERSION = '0.9929';
$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 98d2d03

Please sign in to comment.