Skip to content

Commit

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

diff --git a/Changes b/Changes
index bef2302..84266f0 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.99_24 Sat Mar 27 13:31:51 PDT 2010
+        - Disable Devel::StackTrace::WithLexicals for now until PadWalker RT #55242 is fixed
+
 0.99_23 Sat Mar 27 01:02:24 PDT 2010
         - Dropped keep-alive code from HTTP::Server::PSGI now that Starlet clones the code
         - Special case --disable-* and --enable-* command line options in plackup and Plack::Runner
  • Loading branch information
miyagawa committed Mar 27, 2010
1 parent f0ca500 commit 335094e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
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.99_24 Sat Mar 27 13:31:51 PDT 2010
- Disable Devel::StackTrace::WithLexicals for now until PadWalker RT #55242 is fixed

0.99_23 Sat Mar 27 01:02:24 PDT 2010
- Dropped keep-alive code from HTTP::Server::PSGI now that Starlet clones the code
- Special case --disable-* and --enable-* command line options in plackup and Plack::Runner
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.99_23';
our $VERSION = '0.99_24';
$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.99_23';
our $VERSION = '0.99_24';
$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.99_23';
our $VERSION = '0.99_24';
$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.99_23';
our $VERSION = '0.99_24';
$VERSION = eval $VERSION;

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

0 comments on commit 335094e

Please sign in to comment.