Skip to content

Commit

Permalink
Increment to v0.58.
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jun 19, 2011
1 parent 2d1213e commit 8cf802f
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 17 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Revision history for Perl extension App::Info.

0.58

0.57 2011-06-19T06:14:46
- Removed `Makefile.PL`. It used Module::Build internally, which is
deprecated.
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
App/Info version 0.57
App/Info version 0.58
=====================

App::Info provides a generalized interface for providing metadata about
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info.pm
Expand Up @@ -54,7 +54,7 @@ use App::Info::Handler;
use App::Info::Request;
use vars qw($VERSION);

$VERSION = '0.57';
$VERSION = '0.58';

##############################################################################
##############################################################################
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/HTTPD.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use App::Info;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info);
$VERSION = '0.57';
$VERSION = '0.58';

my $croak = sub {
my ($caller, $meth) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/HTTPD/Apache.pm
Expand Up @@ -42,7 +42,7 @@ use App::Info::HTTPD;
use App::Info::Util;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info::HTTPD);
$VERSION = '0.57';
$VERSION = '0.58';
use constant WIN32 => $^O eq 'MSWin32';

my $u = App::Info::Util->new;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Handler.pm
Expand Up @@ -33,7 +33,7 @@ handlers, read on!

use strict;
use vars qw($VERSION);
$VERSION = '0.57';
$VERSION = '0.58';

my %handlers;

Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Handler/Carp.pm
Expand Up @@ -64,7 +64,7 @@ Passes the event message to C<Carp::confess()>.
use strict;
use App::Info::Handler;
use vars qw($VERSION @ISA);
$VERSION = '0.57';
$VERSION = '0.58';
@ISA = qw(App::Info::Handler);

my %levels = ( croak => sub { goto &Carp::croak },
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Handler/Print.pm
Expand Up @@ -52,7 +52,7 @@ print event messages to different filehandle.
use strict;
use App::Info::Handler;
use vars qw($VERSION @ISA);
$VERSION = '0.57';
$VERSION = '0.58';
@ISA = qw(App::Info::Handler);

# Register ourselves.
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Handler/Prompt.pm
Expand Up @@ -43,7 +43,7 @@ events.
use strict;
use App::Info::Handler;
use vars qw($VERSION @ISA);
$VERSION = '0.57';
$VERSION = '0.58';
@ISA = qw(App::Info::Handler);

# Register ourselves.
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Lib.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use App::Info;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info);
$VERSION = '0.57';
$VERSION = '0.58';

1;
__END__
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Lib/Expat.pm
Expand Up @@ -41,7 +41,7 @@ use App::Info::Util;
use App::Info::Lib;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info::Lib);
$VERSION = '0.57';
$VERSION = '0.58';

my $u = App::Info::Util->new;

Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Lib/Iconv.pm
Expand Up @@ -42,7 +42,7 @@ use App::Info::Util;
use App::Info::Lib;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info::Lib);
$VERSION = '0.57';
$VERSION = '0.58';
use constant WIN32 => $^O eq 'MSWin32';

my $u = App::Info::Util->new;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Lib/OSSPUUID.pm
Expand Up @@ -43,7 +43,7 @@ use App::Info::Lib;
use File::Spec::Functions 'catfile';
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info::Lib);
$VERSION = '0.57';
$VERSION = '0.58';
use constant WIN32 => $^O eq 'MSWin32';

my $u = App::Info::Util->new;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/RDBMS.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use App::Info;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info);
$VERSION = '0.57';
$VERSION = '0.58';

1;
__END__
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/RDBMS/PostgreSQL.pm
Expand Up @@ -42,7 +42,7 @@ use App::Info::RDBMS;
use App::Info::Util;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info::RDBMS);
$VERSION = '0.57';
$VERSION = '0.58';
use constant WIN32 => $^O eq 'MSWin32';

my $u = App::Info::Util->new;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/RDBMS/SQLite.pm
Expand Up @@ -43,7 +43,7 @@ use App::Info::RDBMS;
use App::Info::Util;
use vars qw(@ISA $VERSION);
@ISA = qw(App::Info::RDBMS);
$VERSION = '0.57';
$VERSION = '0.58';
use constant WIN32 => $^O eq 'MSWin32';

my $u = App::Info::Util->new;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Request.pm
Expand Up @@ -43,7 +43,7 @@ to handle the request appropriately.
use strict;
use vars qw($VERSION);
use Carp;
$VERSION = '0.57';
$VERSION = '0.58';

##############################################################################

Expand Down
2 changes: 1 addition & 1 deletion lib/App/Info/Util.pm
Expand Up @@ -47,7 +47,7 @@ use File::Spec ();
use Config;
use vars qw(@ISA $VERSION);
@ISA = qw(File::Spec);
$VERSION = '0.57';
$VERSION = '0.58';

my %path_dems = (
MacOS => qr',',
Expand Down

0 comments on commit 8cf802f

Please sign in to comment.