This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Teach bump-perl-version about perl511.dll, perl511.lib and perl511s.lib
authorJan Dubois <jand@activestate.com>
Tue, 23 Feb 2010 02:27:13 +0000 (18:27 -0800)
committerJan Dubois <jand@activestate.com>
Tue, 23 Feb 2010 02:27:13 +0000 (18:27 -0800)
Porting/bump-perl-version

index b0e77a8..a353ce9 100755 (executable)
@@ -174,6 +174,14 @@ my @maps =  (
        undef,
     ],
 
        undef,
     ],
 
+    # perl511.dll, perl511.lib, perl511s.lib
+    [
+       qr{\b perl (\d\d\d) (s?) \. }x,
+       sub {$1, "perl$newx$newy$2." },
+       "$oldx$oldy",
+       qr/win32/,      # README.win32, win32/*
+    ],
+
 );
 
 
 );