Skip to content

Commit

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

diff --git a/Changes b/Changes
index 37748fe..3ca806e 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.9938  Sun May 23 17:13:05 PDT 2010
+        - ErrorDocument: Added Content-Length to error responses (hachi)
+        - Improved docs about conditional middleware loading
+        - XSendfile: Updated (undocumented) environment key to switch frontend
+        - Auth::Basic: Added notes about how to use it with Apache (mod_perl and CGI) [RT #57436]
+
 0.9937  Fri May 14 23:11:27 PDT 2010
         - Fixed -I broken in 0.9936 (juster) plack#114
  • Loading branch information
miyagawa committed May 24, 2010
1 parent c1c09a6 commit 6299066
Show file tree
Hide file tree
Showing 5 changed files with 10 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.9938 Sun May 23 17:13:05 PDT 2010
- ErrorDocument: Added Content-Length to error responses (hachi)
- Improved docs about conditional middleware loading
- XSendfile: Updated (undocumented) environment key to switch frontend
- Auth::Basic: Added notes about how to use it with Apache (mod_perl and CGI) [RT #57436]

0.9937 Fri May 14 23:11:27 PDT 2010
- Fixed -I broken in 0.9936 (juster) #114

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.9937';
our $VERSION = '0.9938';
$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.9937';
our $VERSION = '0.9938';
$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.9937';
our $VERSION = '0.9938';
$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.9937';
our $VERSION = '0.9938';
$VERSION = eval $VERSION;

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

0 comments on commit 6299066

Please sign in to comment.