This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #127765] Fix bogus $File::Spec::AmigaOS::VERSION
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Tue, 22 Mar 2016 21:07:38 +0000 (21:07 +0000)
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Tue, 22 Mar 2016 22:14:10 +0000 (22:14 +0000)
';' a single bitflip away from '3', which must have happened before
e46aa1dd got committed, since the SHA-1 hashes are all consistent.

dist/PathTools/lib/File/Spec/AmigaOS.pm

index 9182d5e..7a5889c 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use vars qw(@ISA $VERSION);
 require File::Spec::Unix;
 
-$VERSION = ';.64';
+$VERSION = '3.64';
 $VERSION =~ tr/_//d;
 
 @ISA = qw(File::Spec::Unix);