]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
This is 0.64 master v0.64
authorVincent Pit <vpit@cpan.org>
Mon, 18 Mar 2024 23:20:51 +0000 (00:20 +0100)
committerVincent Pit <vpit@cpan.org>
Mon, 18 Mar 2024 23:20:51 +0000 (00:20 +0100)
Changes
META.json
META.yml
README
lib/Variable/Magic.pm

diff --git a/Changes b/Changes
index 2be8a94bfc7b028d68a853d1ce64aaf25b1739d9..3c7e659f53b3235570bfd79639f2e3fa23abf03c 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,17 @@
 Revision history for Variable-Magic
 
+0.64    2024-03-18 23:20 UTC
+        This is a maintenance release. The code contains no functional change.
+        Satisfied users of version 0.63 can skip this update.
+        + Add : Contributing guidelines are now listed in the new
+                CONTRIBUTING file.
+        + Fix : [RT #151104] : fix for t/18-opinfo.t broken under blead
+                Some optimization in core made t/18-opinfo.t fail since perl
+                5.39.7, but that was reverted before 5.40 was released.
+                This fix will make this test pass even when the optimization
+                is reinstantiated after release freeze.
+                Thanks David Mitchell for reporting and providing a fix.
+
 0.63    2022-09-20 21:45 UTC
         This is a maintenance release. The code contains no functional change.
         Satisfied users of version 0.62 can skip this update.
index f15db0e3f45cfc8054504fc553e0134d56fb0a1c..84a0d511733c522a4bba205da5d5d891ce4c2486 100644 (file)
--- a/META.json
+++ b/META.json
@@ -68,6 +68,6 @@
          "web" : "http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git"
       }
    },
-   "version" : "0.63",
+   "version" : "0.64",
    "x_serialization_backend" : "JSON::PP version 4.06"
 }
index f4051a1e91c3ce5fef87476dc5d8cf4169e17e16..f429c36810b59d4388755d147425c032861d5ec0 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -40,5 +40,5 @@ resources:
   homepage: http://search.cpan.org/dist/Variable-Magic/
   license: http://dev.perl.org/licenses/
   repository: http://git.vpit.fr/perl/modules/Variable-Magic.git/
-version: '0.63'
+version: '0.64'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff --git a/README b/README
index 9e1af8f0f9ab6032209a7b13d052f7496345c45e..3a9cf67273197e679a7010a5401365dc3340e08a 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Variable::Magic - Associate user-defined magic to variables from Perl.
 
 VERSION
-    Version 0.63
+    Version 0.64
 
 SYNOPSIS
         use Variable::Magic qw<wizard cast VMG_OP_INFO_NAME>;
@@ -645,8 +645,9 @@ SUPPORT
         perldoc Variable::Magic
 
 COPYRIGHT & LICENSE
-    Copyright 2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2022
-    Vincent Pit, all rights reserved.
+    Copyright
+    2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2022,2024 Vincent
+    Pit, all rights reserved.
 
     This program is free software; you can redistribute it and/or modify it
     under the same terms as Perl itself.
index e94e67cec76145059a062998493d334014a68508..5255986cc4008c6496a4721b539c9a5241c5b7c6 100644 (file)
@@ -11,13 +11,13 @@ Variable::Magic - Associate user-defined magic to variables from Perl.
 
 =head1 VERSION
 
-Version 0.63
+Version 0.64
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.63';
+ $VERSION = '0.64';
 }
 
 =head1 SYNOPSIS