Skip to content

Commit

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

diff --git a/Changes b/Changes
index 0e98fda..24ac25e 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ 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.9917  Wed Mar 17 15:33:43 PDT 2010
+        - Added Plack::Handler::Apache2::Registry (hiratara)
+        - Set default PLACK_ENV in Plack::Util::load_psgi
+
 0.9916  Fri Mar 12 12:52:39 JST 2010
         - Added support for a new (renamed) web server Corona
         - Document enable coderef in Plack::Middleware (clkao)
  • Loading branch information
miyagawa committed Mar 17, 2010
1 parent 1f2d404 commit df6d1bf
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ 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.9917 Wed Mar 17 15:33:43 PDT 2010
- Added Plack::Handler::Apache2::Registry (hiratara)
- Set default PLACK_ENV in Plack::Util::load_psgi

0.9916 Fri Mar 12 12:52:39 JST 2010
- Added support for a new (renamed) web server Corona
- Document enable coderef in Plack::Middleware (clkao)
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ lib/Plack/Component.pm
lib/Plack/Handler.pm
lib/Plack/Handler/Apache1.pm
lib/Plack/Handler/Apache2.pm
lib/Plack/Handler/Apache2/Registry.pm
lib/Plack/Handler/CGI.pm
lib/Plack/Handler/FCGI.pm
lib/Plack/Handler/HTTP/Server/PSGI.pm
Expand Down Expand Up @@ -135,6 +136,7 @@ t/FCGIUtils.pm
t/HTTP-Message-PSGI/utf8_req.t
t/Plack-Builder/mount.t
t/Plack-Handler/apache1.t
t/Plack-Handler/apache2-registry.t
t/Plack-Handler/apache2.t
t/Plack-Handler/cgi.t
t/Plack-Handler/fcgi.t
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Plack;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '0.9916';
our $VERSION = '0.9917';
$VERSION = eval $VERSION;

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

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

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

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

0 comments on commit df6d1bf

Please sign in to comment.