Skip to content

Commit

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

diff --git a/Changes b/Changes
index f7e60d2..24a55b9 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 See http://github.com/miyagawa/cpanminus/ for the latest development.

+1.0012  Fri Aug 20 12:46:34 PDT 2010
+   - version check with -L and -l was failing with --skip-installed default. Now fixed (reported by leedo) #55
+   - Fixed the code to find root of tarballs (perlpilot)
+
 1.0011  Wed Aug 18 16:38:24 PDT 2010
    - -f now implies --reinstall (perigrin)
  • Loading branch information
miyagawa committed Aug 20, 2010
1 parent 80c3ae0 commit 61a3909
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
See http://github.com/miyagawa/cpanminus/ for the latest development.

1.0012 Fri Aug 20 12:46:34 PDT 2010
- version check with -L and -l was failing with --skip-installed default. Now fixed (reported by leedo) #55
- Fixed the code to find root of tarballs (perlpilot)

1.0011 Wed Aug 18 16:38:24 PDT 2010
- -f now implies --reinstall (perigrin)

Expand Down
7 changes: 4 additions & 3 deletions cpanm
Expand Up @@ -18,7 +18,7 @@ my %fatpacked;

$fatpacked{"App/cpanminus.pm"} = <<'APP_CPANMINUS';
package App::cpanminus;
our $VERSION = "1.0011";
our $VERSION = "1.0012";
=head1 NAME
Expand Down Expand Up @@ -336,7 +336,7 @@ $fatpacked{"App/cpanminus/script.pm"} = <<'APP_CPANMINUS_SCRIPT';
use constant WIN32 => $^O eq 'MSWin32';
use constant SUNOS => $^O eq 'solaris';
our $VERSION = "1.0011";
our $VERSION = "1.0012";
$VERSION = eval $VERSION;
my $quote = WIN32 ? q/"/ : q/'/;
Expand Down Expand Up @@ -981,6 +981,8 @@ $fatpacked{"App/cpanminus/script.pm"} = <<'APP_CPANMINUS_SCRIPT';
return 1;
}
$self->check_libs;
if ($dist->{module}) {
my($ok, $local) = $self->check_module($dist->{module}, $dist->{module_version} || 0);
if ($self->{skip_installed} && $ok) {
Expand Down Expand Up @@ -1010,7 +1012,6 @@ $fatpacked{"App/cpanminus/script.pm"} = <<'APP_CPANMINUS_SCRIPT';
return 1;
}
$self->check_libs;
return $self->build_stuff($module, $dist, $depth);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/App/cpanminus.pm
@@ -1,5 +1,5 @@
package App::cpanminus;
our $VERSION = "1.0011";
our $VERSION = "1.0012";

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/App/cpanminus/script.pm
Expand Up @@ -12,7 +12,7 @@ use Parse::CPAN::Meta;
use constant WIN32 => $^O eq 'MSWin32';
use constant SUNOS => $^O eq 'solaris';

our $VERSION = "1.0011";
our $VERSION = "1.0012";
$VERSION = eval $VERSION;

my $quote = WIN32 ? q/"/ : q/'/;
Expand Down

0 comments on commit 61a3909

Please sign in to comment.