Skip to content

Commit

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

diff --git a/Changes b/Changes
index 28a9d20..c30dcb2 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ 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.9941  Thu Jul  8 18:17:30 PDT 2010
+        - Makes Lint not warn about ASCII-only strings with UTF8 flag because they're safe
+
 0.9940  Fri Jul  2 23:37:51 PDT 2010
         - Fixed META.yml
  • Loading branch information
miyagawa committed Jul 9, 2010
1 parent 342aab2 commit 4113610
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,9 @@ 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.9941 Thu Jul 8 18:17:30 PDT 2010
- Makes Lint not warn about ASCII-only strings with UTF8 flag because they're safe

0.9940 Fri Jul 2 23:37:51 PDT 2010
- Fixed META.yml

Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Expand Up @@ -181,6 +181,7 @@ t/Plack-Middleware/httpexceptions.t
t/Plack-Middleware/httpexceptions_streaming.t
t/Plack-Middleware/jsonp.t
t/Plack-Middleware/lint.t
t/Plack-Middleware/lint_utf8_false_alarm.t
t/Plack-Middleware/log4perl.t
t/Plack-Middleware/log_dispatch.t
t/Plack-Middleware/method_override.t
Expand Down Expand Up @@ -257,6 +258,7 @@ t/Plack-Util/headers.t
t/Plack-Util/headers_obj.t
t/Plack-Util/Hello.pm
t/Plack-Util/hello.psgi
t/Plack-Util/inline_object.t
t/Plack-Util/io_with_path.t
t/Plack-Util/is_real_fh.t
t/Plack-Util/load.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.9940';
our $VERSION = '0.9941';
$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.9940';
our $VERSION = '0.9941';
$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.9940';
our $VERSION = '0.9941';
$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.9940';
our $VERSION = '0.9941';
$VERSION = eval $VERSION;

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

0 comments on commit 4113610

Please sign in to comment.