Skip to content

Commit

Permalink
PathTools: Keep $VERSION consistent in all *.pm files
Browse files Browse the repository at this point in the history
Corrects oversight in aa59296; spotted by Aaron Dill in GH #22346.
  • Loading branch information
jkeenan committed Jul 14, 2024
1 parent 71eb28d commit 4b4df88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/PathTools/Cwd.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use strict;
use Exporter;


our $VERSION = '3.90';
our $VERSION = '3.91';
my $xs_version = $VERSION;
$VERSION =~ tr/_//d;

Expand Down
4 changes: 3 additions & 1 deletion dist/PathTools/lib/File/Spec.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ package File::Spec;

use strict;

our $VERSION = '3.90';
# Keep $VERSION consistent in all *.pm files in this distribution, including
# Cwd.pm.
our $VERSION = '3.91';
$VERSION =~ tr/_//d;

my %module = (
Expand Down

0 comments on commit 4b4df88

Please sign in to comment.