This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade version from version 0.9908 to 0.9909
[perl5.git] / cpan / version / lib / version.pm
index e6620c2..f8afd84 100644 (file)
@@ -1,18 +1,20 @@
 #!perl -w
 package version;
 
-use 5.005_05;
+use 5.006002;
 use strict;
 
 use vars qw(@ISA $VERSION $CLASS $STRICT $LAX *declare *qv);
 
-$VERSION = 0.9905;
+$VERSION = 0.9909;
 $CLASS = 'version';
 
 # avoid using Exporter
-use version::regex;
+require version::regex;
 *version::is_lax = \&version::regex::is_lax;
 *version::is_strict = \&version::regex::is_strict;
+*LAX = \$version::regex::LAX;
+*STRICT = \$version::regex::STRICT;
 
 sub import {
     no strict 'refs';