Skip to content

Commit

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

diff --git a/Changes b/Changes
index dea95bc..e3ebcfe 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Plack-Middleware-Debug

+0.10  Wed Aug 25 12:43:54 PDT 2010
+     - Support panels in non-200 responses as well since they're useful for debugging anyway (haarg)
+
 0.09  Tue May  4 16:24:09 PDT 2010
      - Added new Parameters panel (franckcuny)
  • Loading branch information
miyagawa committed Aug 25, 2010
1 parent 5fc9f76 commit 3665611
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Plack-Middleware-Debug

0.10 Wed Aug 25 12:43:54 PDT 2010
- Support panels in non-200 responses as well since they're useful for debugging anyway (haarg)

0.09 Tue May 4 16:24:09 PDT 2010
- Added new Parameters panel (franckcuny)

Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008_001;
use strict;
use warnings;
use parent qw(Plack::Middleware);
our $VERSION = '0.09';
our $VERSION = '0.10';

use Encode;
use File::ShareDir;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/Base.pm
Expand Up @@ -8,7 +8,7 @@ use Text::MicroTemplate;
use Data::Dump;
use Scalar::Util;

our $VERSION = '0.09';
our $VERSION = '0.10';

sub call {
my($self, $env) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/CatalystLog.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use parent qw(Plack::Middleware::Debug::Base);
use Catalyst::Log;
use Class::Method::Modifiers qw(install_modifier);
our $VERSION = '0.09';
our $VERSION = '0.10';

# XXX Not thread/Coro/AE safe. Should use $c->env or something
my $psgi_env;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/DBITrace.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Plack::Util::Accessor qw(level);
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub prepare_app {
my $self = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/Environment.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008;
use strict;
use warnings;
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub run {
my($self, $env, $panel) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/Memory.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008;
use strict;
use warnings;
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub run {
my($self, $env, $panel) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/ModuleVersions.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::Versions;
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub run {
my ($self, $env, $panel) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/PerlConfig.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Config;
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub run {
my ($self, $env, $panel) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/Response.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008;
use strict;
use warnings;
use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub run {
my($self, $env, $panel) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/Debug/Timer.pm
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Time::HiRes;

use parent qw(Plack::Middleware::Debug::Base);
our $VERSION = '0.09';
our $VERSION = '0.10';

sub run {
my($self, $env, $panel) = @_;
Expand Down

0 comments on commit 3665611

Please sign in to comment.