Skip to content

Commit

Permalink
Merge branch 'release/0.86'
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Jan 19, 2019
2 parents 8b70370 + be9c3c9 commit c7e86c0
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
10 changes: 8 additions & 2 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
0.86
- Released at 2019-01-19T09:39:55+0900
- Thanks to our contributors: Olaf Alders, Paul Cochrane
- Fix an error from 'install' command. https://rt.cpan.org/Public/Bug/Display.html?id=128083
- Tweak the separater characters of 'exec' command: See https://github.com/gugod/App-perlbrew/issues/648

0.85
- Released at 2018-12-15T23:24:15+0900
- Thanks to our contributors: Branislav Zahradník, Guido Flohr, Joelle Maslak, Luca Ferrari, rage311
- Fix the behaviour of 'clone-modules'
- Various internal refactoring
- Fix the behaviour of 'clone-modules'
- Various internal refactoring

0.84
- Released at 2018-06-24T08:26:14+0900
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This software is Copyright (c) 2018 by Kang-min Liu C<< <gugod@gugod.org> >>.
This software is Copyright (c) 2019 by Kang-min Liu C<< <gugod@gugod.org> >>.

This is free software, licensed under:

Expand Down
8 changes: 4 additions & 4 deletions lib/App/perlbrew.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package App::perlbrew;
use strict;
use warnings;
use 5.008;
our $VERSION = "0.85";
our $VERSION = "0.86";
use Config;

BEGIN {
Expand Down Expand Up @@ -2360,7 +2360,7 @@ sub run_command_symlink_executables {
my ($name, $version) = $executable =~ m/bin\/(.+?)(5\.\d.*)?$/;
next unless $version;
$executable->symlink ($root->perls ($perl)->bin->($name));
$executable->symlink ($root->perls ($perl)->bin($name));
$executable->symlink ($root->perls ($perl)->perl) if $name eq "cperl";
}
}
Expand Down Expand Up @@ -2531,7 +2531,7 @@ sub run_command_exec {
$self->do_exit_with_error_code($exit_code) if ($opts{'halt-on-error'});
}
print "\n\n" unless $self->{quiet};
print "\n" unless $self->{quiet} || $no_header;
}
$self->do_exit_with_error_code(1) unless $overall_success;
}
Expand Down Expand Up @@ -3443,7 +3443,7 @@ You might also want to try upgrading patchperl before trying again:
perlbrew install-patchperl
Generally, if you need to install a perl distribution known to have minor test
failures, do one of these command to avoid seeing this message
failures, do one of these commands to avoid seeing this message:
perlbrew --notest install $self->{dist_name}
perlbrew --force install $self->{dist_name}
Expand Down
8 changes: 4 additions & 4 deletions perlbrew
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ $fatpacked{"App/perlbrew.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'AP
use strict;
use warnings;
use 5.008;
our $VERSION = "0.85";
our $VERSION = "0.86";
use Config;

BEGIN {
Expand Down Expand Up @@ -2612,7 +2612,7 @@ $fatpacked{"App/perlbrew.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'AP
my ($name, $version) = $executable =~ m/bin\/(.+?)(5\.\d.*)?$/;
next unless $version;

$executable->symlink ($root->perls ($perl)->bin->($name));
$executable->symlink ($root->perls ($perl)->bin($name));
$executable->symlink ($root->perls ($perl)->perl) if $name eq "cperl";
}
}
Expand Down Expand Up @@ -2783,7 +2783,7 @@ $fatpacked{"App/perlbrew.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'AP

$self->do_exit_with_error_code($exit_code) if ($opts{'halt-on-error'});
}
print "\n\n" unless $self->{quiet};
print "\n" unless $self->{quiet} || $no_header;
}
$self->do_exit_with_error_code(1) unless $overall_success;
}
Expand Down Expand Up @@ -3695,7 +3695,7 @@ $fatpacked{"App/perlbrew.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'AP
perlbrew install-patchperl

Generally, if you need to install a perl distribution known to have minor test
failures, do one of these command to avoid seeing this message
failures, do one of these commands to avoid seeing this message:

perlbrew --notest install $self->{dist_name}
perlbrew --force install $self->{dist_name}
Expand Down

0 comments on commit c7e86c0

Please sign in to comment.