Skip to content

Commit

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

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

+1.2001  Wed Feb 16 10:54:21 PST 2011
+   - This be official 1.2
+   - Skips tests during the bootstrap, making a much better first time experience
+
 1.19_02 Tue Jan 18 14:11:23 PST 2011
    - Module::Metadata now requires version.pm 0.87. This makes cpanm unable to boostrap when version.pm is
      older than that. For now, include the pure perl version/vpp.pm and version.pm in the fatlib and then
  • Loading branch information
miyagawa committed Feb 16, 2011
1 parent a6b8ba5 commit df2ebad
Show file tree
Hide file tree
Showing 4 changed files with 8 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.2001 Wed Feb 16 10:54:21 PST 2011
- This be official 1.2
- Skips tests during the bootstrap, making a much better first time experience

1.19_02 Tue Jan 18 14:11:23 PST 2011
- Module::Metadata now requires version.pm 0.87. This makes cpanm unable to boostrap when version.pm is
older than that. For now, include the pure perl version/vpp.pm and version.pm in the fatlib and then
Expand Down
5 changes: 2 additions & 3 deletions cpanm
Expand Up @@ -18,7 +18,7 @@ my %fatpacked;

$fatpacked{"App/cpanminus.pm"} = <<'APP_CPANMINUS';
package App::cpanminus;
our $VERSION = "1.2000";
our $VERSION = "1.2001";
=head1 NAME
Expand Down Expand Up @@ -224,8 +224,7 @@ $fatpacked{"App/cpanminus/script.pm"} = <<'APP_CPANMINUS_SCRIPT';
use constant WIN32 => $^O eq 'MSWin32';
use constant SUNOS => $^O eq 'solaris';
our $VERSION = "1.2000";
$VERSION = eval $VERSION;
our $VERSION = "1.2001";
my $quote = WIN32 ? q/"/ : q/'/;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/cpanminus.pm
@@ -1,5 +1,5 @@
package App::cpanminus;
our $VERSION = "1.2000";
our $VERSION = "1.2001";

=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.2000";
our $VERSION = "1.2001";

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

Expand Down

0 comments on commit df2ebad

Please sign in to comment.