]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.25 v0.25
authorVincent Pit <vince@profvince.com>
Wed, 12 Nov 2008 19:40:27 +0000 (20:40 +0100)
committerVincent Pit <vince@profvince.com>
Wed, 12 Nov 2008 19:40:27 +0000 (20:40 +0100)
Changes
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 668211e4a93a7158f74e32da06665cb1879eb0bb..7d2e94b516090c8192ca79fd08b5802282017c6d 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Variable-Magic
 
+0.25    2008-11-12 19:40 UTC
+        + Fix : Compatibility with 5.8.9.
+        + Fix : Old Pod::Coverage don't ignore CLONE.
+        + Upd : META.yml spec updated to 1.4.
+
 0.24    2008-10-12 14:55 UTC
         + Fix : Really fix it.
 
index c38e4a103199c6550b85c0e775477266d1305dd2..87e140775cbcecbc12a694dbe29ad86fc0fcf8a7 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,19 +1,25 @@
 --- #YAML:1.0
-name:                Variable-Magic
-version:             0.24
-abstract:            Associate user-defined magic to variables from Perl.
-license:             perl
-author:              
+name:               Variable-Magic
+version:            0.25
+abstract:           Associate user-defined magic to variables from Perl.
+author:
     - Vincent Pit <perl@profvince.com>
-generated_by:        ExtUtils::MakeMaker version 6.42
-distribution_type:   module
-requires:     
-    Carp:                          0
-    Exporter:                      0
-    XSLoader:                      0
+license:            perl
+distribution_type:  module
+configure_requires:
+    ExtUtils::MakeMaker:  0
+requires:
+    Carp:      0
+    Exporter:  0
+    XSLoader:  0
+no_index:
+    directory:
+        - t
+        - inc
+generated_by:       ExtUtils::MakeMaker version 6.48
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
-    version: 1.3
+    url:      http://module-build.sourceforge.net/META-spec-v1.4.html
+    version:  1.4
 build_requires:
     Config:                        0
     ExtUtils::MakeMaker:           0
diff --git a/README b/README
index 0baaa21c3123cc3356bf68a7011c5f6b078bd644..8ad082d71ece64f21a391b9f0eab95cb35585bb8 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.24
+    Version 0.25
 
 SYNOPSIS
         use Variable::Magic qw/wizard cast dispell/;
index b3d7af9ba24c36164a04996f363812dc755dc8f1..2d47f461ed0a01dcea17d8f3bf7a99b4d759290c 100644 (file)
@@ -13,13 +13,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.24
+Version 0.25
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.24';
+ $VERSION = '0.25';
 }
 
 =head1 SYNOPSIS