Skip to content

Commit

Permalink
Menlo-Legacy-1.9022
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Jun 28, 2018
1 parent 12a44ef commit 8c8a0a4
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 10 deletions.
3 changes: 3 additions & 0 deletions Menlo-Legacy/Changes
Expand Up @@ -2,6 +2,9 @@ Revision history for Menlo-Legacy

{{$NEXT}}

1.9022 2018-06-28 09:36:00 PDT
- Add version.pm for explicit fatpacking for Carton

1.9021 2018-04-26 04:39:28 PDT
- Support --no-static-install to disable static install

Expand Down
11 changes: 7 additions & 4 deletions Menlo-Legacy/META.json
Expand Up @@ -4,7 +4,7 @@
"Tatsuhiko Miyagawa <miyagawa@bulknews.net>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Milla version v1.0.20, Dist::Zilla version 6.009, CPAN::Meta::Converter version 2.150010",
"generated_by" : "Dist::Milla version v1.0.20, Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand Down Expand Up @@ -41,7 +41,8 @@
"runtime" : {
"requires" : {
"Menlo" : "1.9018",
"perl" : "5.008001"
"perl" : "5.008001",
"version" : "0.9905"
}
},
"test" : {
Expand All @@ -62,7 +63,7 @@
"web" : "https://github.com/miyagawa/cpanminus"
}
},
"version" : "1.9021",
"version" : "1.9022",
"x_contributors" : [
"Aaron Moses <mosesa02@localhost.localdomain>",
"Alessandro Ghedini <al3xbio@gmail.com>",
Expand Down Expand Up @@ -110,6 +111,7 @@
"Matt S Trout <>",
"Matt S Trout <mst@shadowcat.co.uk>",
"Michael G. Schwern <schwern@pobox.com>",
"Michael Schout <mschout@gkg.net>",
"motemen <motemen@gmail.com>",
"moznion <moznion@gmail.com>",
"Nicolas R <atoomic@cpan.org>",
Expand Down Expand Up @@ -141,7 +143,8 @@
"yappo <yappo@shibuya.pl>",
"zebardy <zebardy@gmail.com>"
],
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0233",
"x_generated_by_perl" : "v5.20.1",
"x_serialization_backend" : "Cpanel::JSON::XS version 4.02",
"x_static_install" : 1
}

10 changes: 6 additions & 4 deletions Menlo-Legacy/Makefile.PL
@@ -1,4 +1,4 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.009.
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012.
use strict;
use warnings;

Expand All @@ -17,12 +17,13 @@ my %WriteMakefileArgs = (
"MIN_PERL_VERSION" => "5.008001",
"NAME" => "Menlo::Legacy",
"PREREQ_PM" => {
"Menlo" => "1.9018"
"Menlo" => "1.9018",
"version" => "0.9905"
},
"TEST_REQUIRES" => {
"Test::More" => "0.96"
},
"VERSION" => "1.9021",
"VERSION" => "1.9022",
"test" => {
"TESTS" => "t/*.t"
}
Expand All @@ -31,7 +32,8 @@ my %WriteMakefileArgs = (

my %FallbackPrereqs = (
"Menlo" => "1.9018",
"Test::More" => "0.96"
"Test::More" => "0.96",
"version" => "0.9905"
);


Expand Down
2 changes: 1 addition & 1 deletion Menlo-Legacy/lib/Menlo/CLI/Compat.pm
Expand Up @@ -19,7 +19,7 @@ use version ();
use constant BAD_TAR => ($^O eq 'solaris' || $^O eq 'hpux');
use constant CAN_SYMLINK => eval { symlink("", ""); 1 };

our $VERSION = '1.9021';
our $VERSION = '1.9022';

if ($INC{"App/FatPacker/Trace.pm"}) {
require version::vpp;
Expand Down
2 changes: 1 addition & 1 deletion Menlo-Legacy/lib/Menlo/Legacy.pm
@@ -1,7 +1,7 @@
package Menlo::Legacy;

use strict;
our $VERSION = '1.9021';
our $VERSION = '1.9022';

1;
__END__
Expand Down

0 comments on commit 8c8a0a4

Please sign in to comment.