Skip to content

Commit

Permalink
version 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
chorny committed Apr 12, 2015
1 parent 4eab315 commit aaea54e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions Changes
@@ -1,5 +1,6 @@
Revision history for App-EUMM-Migrate

0.11 2015-04-12
"dist" should be ignored

0.10 2011-05-10
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -10,6 +10,6 @@ is recommended.
eumm-migrate tries to automatically detect some properties like license, minimum Perl version
required and repository used.

Copyright 2009-2011 Alexandr Ciornii.
Copyright 2009-2015 Alexandr Ciornii.

GPL3
3 changes: 3 additions & 0 deletions eumm-migrate.pl
Expand Up @@ -90,6 +90,9 @@ sub WriteMakefile {
}
die "Unknown key '$key' in WriteMakefile call" unless exists $transition{$key};
next if $transition{$key} eq '-';
if ($key eq 'INSTALLDIRS' and $val eq 'perl') {
$val = 'core';
}
$result{$transition{$key}}=$val;
}
if (exists $params{'MIN_PERL_VERSION'}) {
Expand Down
6 changes: 3 additions & 3 deletions lib/App/EUMM/Migrate.pm
Expand Up @@ -9,11 +9,11 @@ App::EUMM::Migrate - Perl tool to migrate from ExtUtils::MakeMaker to Module::Bu
=head1 VERSION
Version 0.10
Version 0.11
=cut

our $VERSION = '0.10';
our $VERSION = '0.11';


=head1 SYNOPSIS
Expand Down Expand Up @@ -81,7 +81,7 @@ L<http://search.cpan.org/dist/App-EUMM-Migrate/>
=head1 COPYRIGHT & LICENSE
Copyright 2009-2011 Alexandr Ciornii.
Copyright 2009-2015 Alexandr Ciornii.
GPL3
Expand Down

0 comments on commit aaea54e

Please sign in to comment.