Skip to content

Commit 450efb7

Browse files
committed
release Portable-1.22
1 parent fccbeba commit 450efb7

File tree

9 files changed

+443
-9
lines changed

9 files changed

+443
-9
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Changes for Perl extension Portable.
22

3+
1.22 Wed 9 Apr 2014
4+
- avoiding Parse::CPAN::Meta (collisions with cpanminus) - another UGLY HACK!!!
5+
36
1.21 Wed 9 Apr 2014
47
- avoiding Carp (due to Carp reload failures)
58

lib/CPAN/Mini/Portable.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use warnings;
66
use Portable ();
77
use CPAN::Mini 0.575 ();
88

9-
our $VERSION = '1.21';
9+
our $VERSION = '1.22';
1010
our @ISA = 'CPAN::Mini';
1111

1212
sub new {

lib/Portable.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ more details on how it works...
5151
use 5.008;
5252
use strict;
5353
use warnings;
54-
use Parse::CPAN::Meta 1.39 ();
54+
use Portable::LoadYaml;
5555
use Portable::FileSpec;
5656

57-
our $VERSION = '1.21';
57+
our $VERSION = '1.22';
5858

5959
# This variable is provided exclusively for the
6060
# use of test scripts.
@@ -203,7 +203,7 @@ sub default {
203203
my $conf = Portable::FileSpec::catpath($dist_volume, $dist_dirs, 'portable.perl' );
204204

205205
# Load the YAML file
206-
my $portable = Parse::CPAN::Meta::LoadFile( $conf );
206+
my $portable = Portable::LoadYaml::load_file( $conf );
207207
unless ( _HASH($portable) ) {
208208
die("Missing or invalid portable.perl file");
209209
}

lib/Portable/CPAN.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use Portable::FileSpec;
77

8-
our $VERSION = '1.21';
8+
our $VERSION = '1.22';
99

1010
# Create the enumerations
1111
our %bin = map { $_ => 1 } qw{

lib/Portable/Config.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use Portable::FileSpec;
77

8-
our $VERSION = '1.21';
8+
our $VERSION = '1.22';
99

1010
#####################################################################
1111
# Constructor

lib/Portable/FileSpec.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use 5.008;
66
use strict;
77
use warnings;
88

9-
our $VERSION = '1.21';
9+
our $VERSION = '1.22';
1010

1111
# Some regexes we use for path splitting
1212
my $DRIVE_RX = '[a-zA-Z]:';

lib/Portable/HomeDir.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use strict;
77
use warnings;
88
use Portable::FileSpec;
99

10-
our $VERSION = '1.21';
10+
our $VERSION = '1.22';
1111

1212
#####################################################################
1313
# Portable Driver API

0 commit comments

Comments
 (0)