From: Vincent Pit <vpit@cpan.org>
Date: Mon, 18 Mar 2024 23:20:51 +0000 (+0100)
Subject: This is 0.64
X-Git-Tag: v0.64^0
X-Git-Url: http://git.vpit.fr/?a=commitdiff_plain;ds=inline;p=perl%2Fmodules%2FVariable-Magic.git

This is 0.64
---

diff --git a/Changes b/Changes
index 2be8a94..3c7e659 100644
--- 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.
diff --git a/META.json b/META.json
index f15db0e..84a0d51 100644
--- 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"
 }
diff --git a/META.yml b/META.yml
index f4051a1..f429c36 100644
--- 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 9e1af8f..3a9cf67 100644
--- 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.
diff --git a/lib/Variable/Magic.pm b/lib/Variable/Magic.pm
index e94e67c..5255986 100644
--- a/lib/Variable/Magic.pm
+++ b/lib/Variable/Magic.pm
@@ -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