Skip to content

Commit 78facf5

Browse files
committed
PathTools: Keep $VERSION consistent in all *.pm files
Corrects oversight in aa59296; spotted by Aaron Dill in GH #22346.
1 parent eb31624 commit 78facf5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

dist/PathTools/Cwd.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use Exporter;
44

55

6-
our $VERSION = '3.90';
6+
our $VERSION = '3.91';
77
my $xs_version = $VERSION;
88
$VERSION =~ tr/_//d;
99

dist/PathTools/lib/File/Spec.pm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ package File::Spec;
22

33
use strict;
44

5-
our $VERSION = '3.90';
5+
# Keep $VERSION consistent in all *.pm files in this distribution, including
6+
# Cwd.pm.
7+
our $VERSION = '3.91';
68
$VERSION =~ tr/_//d;
79

810
my %module = (

0 commit comments

Comments
 (0)