In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/019090d2000629cc4f2b8a00be3de64eabe348ef?hp=3c3f8cd64edb32a0dac554f7a524cc222184c3ec>

- Log -----------------------------------------------------------------
commit 019090d2000629cc4f2b8a00be3de64eabe348ef
Author: James Raspass <[email protected]>
Date:   Sun Jan 25 19:41:48 2015 +0000

    Avoid constant.pm depending on vars.pm
-----------------------------------------------------------------------

Summary of changes:
 dist/constant/lib/constant.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/constant/lib/constant.pm b/dist/constant/lib/constant.pm
index d03ab5f..e4b8fd2 100644
--- a/dist/constant/lib/constant.pm
+++ b/dist/constant/lib/constant.pm
@@ -3,8 +3,8 @@ use 5.008;
 use strict;
 use warnings::register;
 
-use vars qw($VERSION %declared);
-$VERSION = '1.32';
+our $VERSION = '1.33';
+our %declared;
 
 #=======================================================================
 

--
Perl5 Master Repository

Reply via email to