Skip to content

Commit

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

diff --git a/Changes b/Changes
index c9cd3ed..6656f8a 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,13 @@ 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.9974  Thu Mar  3 20:55:28 PST 2011
+        - Added a documentation about using relative URI paths beginning with //
+        - Added IIS6ScriptNameFix that fixes SCRIPT_NAME for IIS6 FastCGI, extracted from Catalyst (rafl)
+        - Moved the wrapcgi/exec tests for Win32 #174
+        - Fixed a warning for the new Test::TCP in FCGI testing
+        - Clear %ENV when running the Plack::Test::Suite with Server implementation (hachi)
+
 0.9973  Sat Feb 26 09:40:15 PST 2011
         - Fixed the regexp in the code check added in 0.9972 (leedo)
  • Loading branch information
miyagawa committed Mar 4, 2011
1 parent cc3871f commit b0f525b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,13 @@ 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.9974 Thu Mar 3 20:55:28 PST 2011
- Added a documentation about using relative URI paths beginning with //
- Added IIS6ScriptNameFix that fixes SCRIPT_NAME for IIS6 FastCGI, extracted from Catalyst (rafl)
- Moved the wrapcgi/exec tests for Win32 #174
- Fixed a warning for the new Test::TCP in FCGI testing
- Clear %ENV when running the Plack::Test::Suite with Server implementation (hachi)

0.9973 Sat Feb 26 09:40:15 PST 2011
- Fixed the regexp in the code check added in 0.9972 (leedo)

Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -219,6 +219,7 @@ t/Plack-Middleware/urlmap_builder.t
t/Plack-Middleware/urlmap_env.t
t/Plack-Middleware/urlmap_ports.t
t/Plack-Middleware/wrapcgi.t
t/Plack-Middleware/wrapcgi_exec.t
t/Plack-Middleware/xframework.t
t/Plack-Middleware/xsendfile.t
t/Plack-MIME/add_type.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.9973';
our $VERSION = '0.9974';
$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.9973';
our $VERSION = '0.9974';
$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.9973';
our $VERSION = '0.9974';
$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.9973';
our $VERSION = '0.9974';
$VERSION = eval $VERSION;

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

0 comments on commit b0f525b

Please sign in to comment.