Skip to content

Commit

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

diff --git a/Changes b/Changes
index cfcbbae..d60b826 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,14 @@ 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.9976  Fri Apr  8 18:07:11 PDT 2011
+    [NEW FEATURES]
+        - Support setting content_type in App::File (ajgb)
+
+    [IMPROVEMENTS]
+        - Document fixes (jhannah)
+        - Skip bad tests failing on LWP 6 (daxim)
+
 0.99_75 Thu Mar 24 11:29:22 PDT 2011
     [INCOMPATIBLE CHANGES]
         - builder {} now always returns a PSGI code reference, instead of inconsistently
  • Loading branch information
miyagawa committed Apr 9, 2011
1 parent cafe9b4 commit b943012
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 13 deletions.
8 changes: 8 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,14 @@ 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.9976 Fri Apr 8 18:07:11 PDT 2011
[NEW FEATURES]
- Support setting content_type in App::File (ajgb)

[IMPROVEMENTS]
- Document fixes (jhannah)
- Skip bad tests failing on LWP 6 (daxim)

0.99_75 Thu Mar 24 11:29:22 PDT 2011
[INCOMPATIBLE CHANGES]
- builder {} now always returns a PSGI code reference, instead of inconsistently
Expand Down
1 change: 0 additions & 1 deletion MANIFEST
Expand Up @@ -151,7 +151,6 @@ t/Plack-Handler/cgi.t
t/Plack-Handler/fcgi.t
t/Plack-Handler/fcgi_client.t
t/Plack-Handler/http_server_simple.t
t/Plack-Handler/net_fastcgi.t
t/Plack-Handler/standalone.t
t/Plack-HTTPParser-PP/simple.t
t/Plack-Loader/auto.t
Expand Down
16 changes: 8 additions & 8 deletions README
Expand Up @@ -16,23 +16,23 @@ MODULES AND UTILITIES
CGI, FCGI, Apache1, Apache2 and HTTP::Server::Simple included in the
core Plack distribution.

There are also many HTTP server implementations on CPAN that has Plack
There are also many HTTP server implementations on CPAN that have Plack
handlers.

See Plack::Handler how to write your own adapters.
See Plack::Handler when writing your own adapters.

Plack::Loader
Plack::Loader is a loader to load one of Plack::Handler adapters and run
Plack::Loader is a loader to load one Plack::Handler adapter and run a
PSGI application code reference with it.

Plack::Util
Plack::Util contains a lot of utility functions for server implementors
as well as middleware authors.

.psgi files
PSGI application is a code reference but it's not easy to pass code
reference in the command line or configuration files, so Plack uses a
convention that you need a file named "app.psgi" or alike, which would
A PSGI application is a code reference but it's not easy to pass code
reference via the command line or configuration files, so Plack uses a
convention that you need a file named "app.psgi" or similar, which would
be loaded (via perl's core function "do") to return the PSGI application
code reference.

Expand Down Expand Up @@ -62,10 +62,10 @@ MODULES AND UTILITIES
can still be the same.

If you want to write your own frontend that replaces, or adds
functionalities to plackup, take a look at Plack::Runner module.
functionalities to plackup, take a look at the Plack::Runner module.

Plack::Middleware
PSGI middleware is a PSGI application that wraps existent PSGI
PSGI middleware is a PSGI application that wraps an existing PSGI
application and plays both side of application and servers. From the
servers the wrapped code reference still looks like and behaves exactly
the same as PSGI applications.
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.99_75';
our $VERSION = '0.9976';
$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.99_75';
our $VERSION = '0.9976';
$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.99_75';
our $VERSION = '0.9976';
$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.99_75';
our $VERSION = '0.9976';
$VERSION = eval $VERSION;

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

0 comments on commit b943012

Please sign in to comment.