In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/43f5a3f5b98bf8630dd8c02956d0599eff89883d?hp=3349e48f0f31d4b092c0ef8204f8da0a950d11e8>

- Log -----------------------------------------------------------------
commit 43f5a3f5b98bf8630dd8c02956d0599eff89883d
Author: Chris 'BinGOs' Williams <ch...@bingosnet.co.uk>
Date:   Fri Apr 20 18:07:00 2018 +0100

    Fix Storable indexing issue with PAUSE

-----------------------------------------------------------------------

Summary of changes:
 dist/Storable/Makefile.PL     | 3 ++-
 dist/Storable/__Storable__.pm | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dist/Storable/Makefile.PL b/dist/Storable/Makefile.PL
index ed53816d73..697750566d 100644
--- a/dist/Storable/Makefile.PL
+++ b/dist/Storable/Makefile.PL
@@ -6,6 +6,7 @@
 #  in the README file that comes with the distribution.
 #
 
+use strict;
 use ExtUtils::MakeMaker;
 use Config;
 use File::Copy qw(move copy);
@@ -36,7 +37,7 @@ WriteMakefile(
                             provides    => {
                                 'Storable'  => {
                                     file        => 'Storable_pm.PL',
-                                    version     => $NEW_VERSION,
+                                    version     => 
MM->parse_version('__Storable__.pm'),
                                 },
                             },
 
diff --git a/dist/Storable/__Storable__.pm b/dist/Storable/__Storable__.pm
index 52ce1629e5..71c669daaf 100644
--- a/dist/Storable/__Storable__.pm
+++ b/dist/Storable/__Storable__.pm
@@ -27,7 +27,7 @@ our @EXPORT_OK = qw(
 
 our ($canonical, $forgive_me);
 
-our $VERSION = '3.06';
+our $VERSION = '3.08';
 
 our $recursion_limit;
 our $recursion_limit_hash;

-- 
Perl5 Master Repository

Reply via email to