Hello community,

here is the log from the commit of package perl-B-Hooks-OP-Check for 
openSUSE:Factory checked in at 2017-08-28 15:04:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-B-Hooks-OP-Check (Old)
 and      /work/SRC/openSUSE:Factory/.perl-B-Hooks-OP-Check.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-B-Hooks-OP-Check"

Mon Aug 28 15:04:24 2017 rev:7 rq:514082 version:0.22

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-B-Hooks-OP-Check/perl-B-Hooks-OP-Check.changes  
    2017-05-24 16:51:57.265149097 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-B-Hooks-OP-Check.new/perl-B-Hooks-OP-Check.changes
 2017-08-28 15:04:31.503377220 +0200
@@ -1,0 +2,10 @@
+Tue Aug  1 05:05:45 UTC 2017 - [email protected]
+
+- updated to 0.22
+   see /usr/share/doc/packages/perl-B-Hooks-OP-Check/Changes
+
+  0.22      2017-07-31 16:25:05Z
+    * Use cleaner wrap_op_checker() API to control op checking.
+    * Use core's Perl_check_t typedef instead of inventing our own.
+
+-------------------------------------------------------------------

Old:
----
  B-Hooks-OP-Check-0.21.tar.gz

New:
----
  B-Hooks-OP-Check-0.22.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-B-Hooks-OP-Check.spec ++++++
--- /var/tmp/diff_new_pack.nwgqkf/_old  2017-08-28 15:04:33.135147702 +0200
+++ /var/tmp/diff_new_pack.nwgqkf/_new  2017-08-28 15:04:33.139147140 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           perl-B-Hooks-OP-Check
-Version:        0.21
+Version:        0.22
 Release:        0
 %define cpan_name B-Hooks-OP-Check
 Summary:        Wrap OP check callbacks

++++++ B-Hooks-OP-Check-0.21.tar.gz -> B-Hooks-OP-Check-0.22.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/CONTRIBUTING 
new/B-Hooks-OP-Check-0.22/CONTRIBUTING
--- old/B-Hooks-OP-Check-0.21/CONTRIBUTING      2017-05-11 16:19:07.000000000 
+0200
+++ new/B-Hooks-OP-Check-0.22/CONTRIBUTING      2017-07-31 18:25:08.000000000 
+0200
@@ -94,4 +94,4 @@
 
 
 This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 
0.013 from a
-template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.123.
+template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.125.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/Changes 
new/B-Hooks-OP-Check-0.22/Changes
--- old/B-Hooks-OP-Check-0.21/Changes   2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/Changes   2017-07-31 18:25:08.000000000 +0200
@@ -1,5 +1,9 @@
 Revision history for B-Hooks-OP-Check
 
+0.22      2017-07-31 16:25:05Z
+  * Use cleaner wrap_op_checker() API to control op checking.
+  * Use core's Perl_check_t typedef instead of inventing our own.
+
 0.21      2017-05-11 14:19:03Z
   * re-add the creation of B/Hooks/OP/Check/Install/Files.pm to installation
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/Check.xs 
new/B-Hooks-OP-Check-0.22/Check.xs
--- old/B-Hooks-OP-Check-0.21/Check.xs  2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/Check.xs  2017-07-31 18:25:08.000000000 +0200
@@ -4,11 +4,28 @@
 
 #include "ppport.h"
 
-#include "hook_op_check.h"
+#if PERL_BCDVERSION < 0x5010001
+typedef unsigned Optype;
+#endif /* <5.10.1 */
+
+#ifndef wrap_op_checker
+# define wrap_op_checker(c,n,o) THX_wrap_op_checker(aTHX_ c,n,o)
+static void THX_wrap_op_checker(pTHX_ Optype opcode,
+       Perl_check_t new_checker, Perl_check_t *old_checker_p)
+{
+       if(*old_checker_p) return;
+       OP_REFCNT_LOCK;
+       if(!*old_checker_p) {
+               *old_checker_p = PL_check[opcode];
+               PL_check[opcode] = new_checker;
+       }
+       OP_REFCNT_UNLOCK;
+}
+#endif /* !wrap_op_checker */
 
-typedef OP *(*orig_check_t) (pTHX_ OP *op);
+#include "hook_op_check.h"
 
-STATIC orig_check_t orig_PL_check[OP_max];
+STATIC Perl_check_t orig_PL_check[OP_max];
 STATIC AV *check_cbs[OP_max];
 
 #define run_orig_check(type, op) (CALL_FPTR (orig_PL_check[(type)])(aTHX_ op))
@@ -62,8 +79,7 @@
        if (!hooks) {
                hooks = newAV ();
                check_cbs[type] = hooks;
-               orig_PL_check[type] = PL_check[type];
-               PL_check[type] = check_cb;
+               wrap_op_checker(type, check_cb, &orig_PL_check[type]);
        }
 
        hook = newSVuv (PTR2UV (cb));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/MANIFEST 
new/B-Hooks-OP-Check-0.22/MANIFEST
--- old/B-Hooks-OP-Check-0.21/MANIFEST  2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/MANIFEST  2017-07-31 18:25:08.000000000 +0200
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.009.
+# This file was automatically generated by Dist::Zilla::Plugin::Manifest 
v6.010.
 CONTRIBUTING
 Changes
 Check.xs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/META.json 
new/B-Hooks-OP-Check-0.22/META.json
--- old/B-Hooks-OP-Check-0.21/META.json 2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/META.json 2017-07-31 18:25:08.000000000 +0200
@@ -4,7 +4,7 @@
       "Florian Ragwitz <[email protected]>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "Dist::Zilla version 6.009, CPAN::Meta::Converter version 
2.150010",
+   "generated_by" : "Dist::Zilla version 6.010, CPAN::Meta::Converter version 
2.150010",
    "license" : [
       "perl_5"
    ],
@@ -30,7 +30,7 @@
       },
       "develop" : {
          "recommends" : {
-            "Dist::Zilla::PluginBundle::Author::ETHER" : "0.123"
+            "Dist::Zilla::PluginBundle::Author::ETHER" : "0.125"
          },
          "requires" : {
             "Devel::PPPort" : "3.23",
@@ -46,6 +46,7 @@
             "Dist::Zilla::Plugin::CheckStrictVersion" : "0",
             "Dist::Zilla::Plugin::ConfirmRelease" : "0",
             "Dist::Zilla::Plugin::CopyFilesFromRelease" : "0",
+            "Dist::Zilla::Plugin::EnsureLatestPerl" : "0",
             "Dist::Zilla::Plugin::FileFinder::ByName" : "0",
             "Dist::Zilla::Plugin::GenerateFile::FromShareDir" : "0",
             "Dist::Zilla::Plugin::Git::Check" : "0",
@@ -101,6 +102,7 @@
             "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.022",
             "Dist::Zilla::Plugin::TestRelease" : "0",
             "Dist::Zilla::Plugin::UploadToCPAN" : "0",
+            "Dist::Zilla::Plugin::UseUnsafeInc" : "0",
             "Dist::Zilla::PluginBundle::Author::ETHER" : "0.119",
             "File::Spec" : "0",
             "IO::Handle" : "0",
@@ -147,7 +149,7 @@
    "provides" : {
       "B::Hooks::OP::Check" : {
          "file" : "lib/B/Hooks/OP/Check.pm",
-         "version" : "0.21"
+         "version" : "0.22"
       }
    },
    "release_status" : "stable",
@@ -163,10 +165,10 @@
          "web" : "https://github.com/karenetheridge/B-Hooks-OP-Check";
       }
    },
-   "version" : "0.21",
+   "version" : "0.22",
    "x_Dist_Zilla" : {
       "perl" : {
-         "version" : "5.025012"
+         "version" : "5.027002"
       },
       "plugins" : [
          {
@@ -178,7 +180,7 @@
                }
             },
             "name" : "@Author::ETHER/bundle_plugins",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::RewriteVersion::Transitional",
@@ -195,7 +197,7 @@
                "Dist::Zilla::Plugin::RewriteVersion::Transitional" : {}
             },
             "name" : "@Author::ETHER/RewriteVersion::Transitional",
-            "version" : "0.007"
+            "version" : "0.008"
          },
          {
             "class" : "Dist::Zilla::Plugin::PromptIfStale",
@@ -232,7 +234,7 @@
          {
             "class" : "Dist::Zilla::Plugin::FileFinder::ByName",
             "name" : "@Author::ETHER/Examples",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::GatherDir",
@@ -259,32 +261,32 @@
                }
             },
             "name" : "@Author::ETHER/Git::GatherDir",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::MetaYAML",
             "name" : "@Author::ETHER/MetaYAML",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::MetaJSON",
             "name" : "@Author::ETHER/MetaJSON",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Readme",
             "name" : "@Author::ETHER/Readme",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Manifest",
             "name" : "@Author::ETHER/Manifest",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::License",
             "name" : "@Author::ETHER/License",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::GenerateFile::FromShareDir",
@@ -373,7 +375,7 @@
          {
             "class" : "Dist::Zilla::Plugin::MetaTests",
             "name" : "@Author::ETHER/MetaTests",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Test::CPAN::Changes",
@@ -398,7 +400,7 @@
          {
             "class" : "Dist::Zilla::Plugin::PodSyntaxTests",
             "name" : "@Author::ETHER/PodSyntaxTests",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Test::PodSpelling",
@@ -629,7 +631,7 @@
          {
             "class" : "Dist::Zilla::Plugin::MetaNoIndex",
             "name" : "@Author::ETHER/MetaNoIndex",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::MetaProvides::Package",
@@ -642,7 +644,7 @@
                      {
                         "class" : "Dist::Zilla::Plugin::FinderCode",
                         "name" : ":InstallModules",
-                        "version" : "6.009"
+                        "version" : "6.010"
                      }
                   ],
                   "include_underscores" : 0
@@ -664,7 +666,7 @@
          {
             "class" : "Dist::Zilla::Plugin::MetaConfig",
             "name" : "@Author::ETHER/MetaConfig",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Keywords",
@@ -677,9 +679,19 @@
             "version" : "0.007"
          },
          {
+            "class" : "Dist::Zilla::Plugin::UseUnsafeInc",
+            "config" : {
+               "Dist::Zilla::Plugin::UseUnsafeInc" : {
+                  "dot_in_INC" : 0
+               }
+            },
+            "name" : "@Author::ETHER/UseUnsafeInc",
+            "version" : "0.001"
+         },
+         {
             "class" : "Dist::Zilla::Plugin::AutoPrereqs",
             "name" : "@Author::ETHER/AutoPrereqs",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Prereqs::AuthorDeps",
@@ -700,13 +712,13 @@
                }
             },
             "name" : "@Author::ETHER/pluginbundle_version",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Contributors",
             "config" : {
                "Dist::Zilla::Plugin::Git::Contributors" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "include_authors" : 0,
                   "include_releaser" : 1,
                   "order_by" : "commits",
@@ -714,7 +726,7 @@
                }
             },
             "name" : "@Author::ETHER/Git::Contributors",
-            "version" : "0.029"
+            "version" : "0.030"
          },
          {
             "class" : "Dist::Zilla::Plugin::StaticInstall",
@@ -762,11 +774,11 @@
                   "run" : [
                      "bash -c \"test -e .ackrc && grep -q -- 
'--ignore-dir=.latest' .ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ 
`dirname '%d'` != .build ]]; then test -e .ackrc && grep -q -- 
'--ignore-dir=%d' .ackrc || echo '--ignore-dir=%d' >> .ackrc; fi\""
                   ],
-                  "version" : "0.044"
+                  "version" : "0.046"
                }
             },
             "name" : "@Author::ETHER/.ackrc",
-            "version" : "0.044"
+            "version" : "0.046"
          },
          {
             "class" : "Dist::Zilla::Plugin::Run::AfterBuild",
@@ -777,11 +789,11 @@
                   ],
                   "fatal_errors" : 0,
                   "quiet" : 1,
-                  "version" : "0.044"
+                  "version" : "0.046"
                }
             },
             "name" : "@Author::ETHER/.latest",
-            "version" : "0.044"
+            "version" : "0.046"
          },
          {
             "class" : "Dist::Zilla::Plugin::CheckStrictVersion",
@@ -794,6 +806,16 @@
             "version" : "0.001"
          },
          {
+            "class" : "Dist::Zilla::Plugin::EnsureLatestPerl",
+            "config" : {
+               "Dist::Zilla::Plugin::EnsureLatestPerl" : {
+                  "Module::CoreList" : "5.20170720"
+               }
+            },
+            "name" : "@Author::ETHER/EnsureLatestPerl",
+            "version" : "0.005"
+         },
+         {
             "class" : "Dist::Zilla::Plugin::Git::Check",
             "config" : {
                "Dist::Zilla::Plugin::Git::Check" : {
@@ -805,18 +827,18 @@
                   "changelog" : "Changes"
                },
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                }
             },
             "name" : "@Author::ETHER/initial check",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts",
             "config" : {
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                }
             },
@@ -827,7 +849,7 @@
             "class" : "Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch",
             "config" : {
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                }
             },
@@ -837,7 +859,7 @@
          {
             "class" : "Dist::Zilla::Plugin::Git::Remote::Check",
             "name" : "@Author::ETHER/Git::Remote::Check",
-            "version" : "0.2.0"
+            "version" : "0.1.2"
          },
          {
             "class" : "Dist::Zilla::Plugin::CheckPrereqsIndexed",
@@ -847,7 +869,7 @@
          {
             "class" : "Dist::Zilla::Plugin::TestRelease",
             "name" : "@Author::ETHER/TestRelease",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Check",
@@ -861,12 +883,12 @@
                   "changelog" : "Changes"
                },
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                }
             },
             "name" : "@Author::ETHER/after tests",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::CheckIssues",
@@ -876,7 +898,7 @@
          {
             "class" : "Dist::Zilla::Plugin::UploadToCPAN",
             "name" : "@Author::ETHER/UploadToCPAN",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::CopyFilesFromRelease",
@@ -928,7 +950,7 @@
                   "changelog" : "Changes"
                },
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                },
                "Dist::Zilla::Role::Git::StringFormatter" : {
@@ -936,7 +958,7 @@
                }
             },
             "name" : "@Author::ETHER/release snapshot",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Tag",
@@ -945,12 +967,12 @@
                   "branch" : null,
                   "changelog" : "Changes",
                   "signed" : 0,
-                  "tag" : "0.21",
+                  "tag" : "0.22",
                   "tag_format" : "%v%t",
                   "tag_message" : "v%v%t"
                },
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                },
                "Dist::Zilla::Role::Git::StringFormatter" : {
@@ -958,7 +980,7 @@
                }
             },
             "name" : "@Author::ETHER/Git::Tag",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::GitHub::Update",
@@ -984,12 +1006,12 @@
                "Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional" : 
{}
             },
             "name" : "@Author::ETHER/BumpVersionAfterRelease::Transitional",
-            "version" : "0.007"
+            "version" : "0.008"
          },
          {
             "class" : "Dist::Zilla::Plugin::NextRelease",
             "name" : "@Author::ETHER/NextRelease",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Commit",
@@ -1008,7 +1030,7 @@
                   "changelog" : "Changes"
                },
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                },
                "Dist::Zilla::Role::Git::StringFormatter" : {
@@ -1016,7 +1038,7 @@
                }
             },
             "name" : "@Author::ETHER/post-release commit",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::Git::Push",
@@ -1028,12 +1050,12 @@
                   "remotes_must_exist" : 1
                },
                "Dist::Zilla::Role::Git::Repo" : {
-                  "git --version" : "2.11.0",
+                  "git_version" : "2.13.0",
                   "repo_root" : "."
                }
             },
             "name" : "@Author::ETHER/Git::Push",
-            "version" : "2.041"
+            "version" : "2.042"
          },
          {
             "class" : "Dist::Zilla::Plugin::Run::AfterRelease",
@@ -1044,11 +1066,11 @@
                   "run" : [
                      "REDACTED"
                   ],
-                  "version" : "0.044"
+                  "version" : "0.046"
                }
             },
             "name" : "@Author::ETHER/install release",
-            "version" : "0.044"
+            "version" : "0.046"
          },
          {
             "class" : "Dist::Zilla::Plugin::Run::AfterRelease",
@@ -1059,16 +1081,16 @@
                   ],
                   "fatal_errors" : 1,
                   "quiet" : 1,
-                  "version" : "0.044"
+                  "version" : "0.046"
                }
             },
             "name" : "@Author::ETHER/release complete",
-            "version" : "0.044"
+            "version" : "0.046"
          },
          {
             "class" : "Dist::Zilla::Plugin::ConfirmRelease",
             "name" : "@Author::ETHER/ConfirmRelease",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::MakeMaker::Awesome",
@@ -1089,67 +1111,67 @@
                }
             },
             "name" : "ConfigureRequires",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::PPPort",
             "name" : "PPPort",
-            "version" : "0.007"
+            "version" : "0.008"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":InstallModules",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":IncModules",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":TestFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":ExtraTestFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":ExecFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":PerlExecFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":ShareFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":MainModule",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":AllFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::FinderCode",
             "name" : ":NoFiles",
-            "version" : "6.009"
+            "version" : "6.010"
          },
          {
             "class" : "Dist::Zilla::Plugin::VerifyPhases",
             "name" : "@Author::ETHER/PHASE VERIFICATION",
-            "version" : "0.015"
+            "version" : "0.016"
          }
       ],
       "zilla" : {
@@ -1157,7 +1179,7 @@
          "config" : {
             "is_trial" : 0
          },
-         "version" : "6.009"
+         "version" : "6.010"
       }
    },
    "x_authority" : "cpan:FLORA",
@@ -1166,6 +1188,7 @@
       "Zefram <[email protected]>",
       "Alexandr Ciornii <[email protected]>"
    ],
-   "x_serialization_backend" : "Cpanel::JSON::XS version 3.0233"
+   "x_serialization_backend" : "Cpanel::JSON::XS version 3.0237",
+   "x_use_unsafe_inc" : 0
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/META.yml 
new/B-Hooks-OP-Check-0.22/META.yml
--- old/B-Hooks-OP-Check-0.21/META.yml  2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/META.yml  2017-07-31 18:25:08.000000000 +0200
@@ -12,7 +12,7 @@
   ExtUtils::MakeMaker: '0'
   perl: '5.008001'
 dynamic_config: 0
-generated_by: 'Dist::Zilla version 6.009, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'Dist::Zilla version 6.010, CPAN::Meta::Converter version 
2.150010'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -26,7 +26,7 @@
 provides:
   B::Hooks::OP::Check:
     file: lib/B/Hooks/OP/Check.pm
-    version: '0.21'
+    version: '0.22'
 requires:
   DynaLoader: '0'
   parent: '0'
@@ -37,10 +37,10 @@
   bugtracker: 
https://rt.cpan.org/Public/Dist/Display.html?Name=B-Hooks-OP-Check
   homepage: https://github.com/karenetheridge/B-Hooks-OP-Check
   repository: https://github.com/karenetheridge/B-Hooks-OP-Check.git
-version: '0.21'
+version: '0.22'
 x_Dist_Zilla:
   perl:
-    version: '5.025012'
+    version: '5.027002'
   plugins:
     -
       class: Dist::Zilla::Plugin::Prereqs
@@ -49,7 +49,7 @@
           phase: develop
           type: requires
       name: '@Author::ETHER/bundle_plugins'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::RewriteVersion::Transitional
       config:
@@ -62,7 +62,7 @@
           skip_version_provider: 0
         Dist::Zilla::Plugin::RewriteVersion::Transitional: {}
       name: '@Author::ETHER/RewriteVersion::Transitional'
-      version: '0.007'
+      version: '0.008'
     -
       class: Dist::Zilla::Plugin::PromptIfStale
       config:
@@ -91,7 +91,7 @@
     -
       class: Dist::Zilla::Plugin::FileFinder::ByName
       name: '@Author::ETHER/Examples'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Git::GatherDir
       config:
@@ -113,27 +113,27 @@
         Dist::Zilla::Plugin::Git::GatherDir:
           include_untracked: 0
       name: '@Author::ETHER/Git::GatherDir'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::MetaYAML
       name: '@Author::ETHER/MetaYAML'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::MetaJSON
       name: '@Author::ETHER/MetaJSON'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Readme
       name: '@Author::ETHER/Readme'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Manifest
       name: '@Author::ETHER/Manifest'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::License
       name: '@Author::ETHER/License'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::GenerateFile::FromShareDir
       config:
@@ -203,7 +203,7 @@
     -
       class: Dist::Zilla::Plugin::MetaTests
       name: '@Author::ETHER/MetaTests'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Test::CPAN::Changes
       config:
@@ -222,7 +222,7 @@
     -
       class: Dist::Zilla::Plugin::PodSyntaxTests
       name: '@Author::ETHER/PodSyntaxTests'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Test::PodSpelling
       config:
@@ -401,7 +401,7 @@
     -
       class: Dist::Zilla::Plugin::MetaNoIndex
       name: '@Author::ETHER/MetaNoIndex'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::MetaProvides::Package
       config:
@@ -412,7 +412,7 @@
             -
               class: Dist::Zilla::Plugin::FinderCode
               name: ':InstallModules'
-              version: '6.009'
+              version: '6.010'
           include_underscores: 0
         Dist::Zilla::Role::MetaProvider::Provider:
           $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004'
@@ -427,7 +427,7 @@
     -
       class: Dist::Zilla::Plugin::MetaConfig
       name: '@Author::ETHER/MetaConfig'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Keywords
       config:
@@ -436,9 +436,16 @@
       name: '@Author::ETHER/Keywords'
       version: '0.007'
     -
+      class: Dist::Zilla::Plugin::UseUnsafeInc
+      config:
+        Dist::Zilla::Plugin::UseUnsafeInc:
+          dot_in_INC: 0
+      name: '@Author::ETHER/UseUnsafeInc'
+      version: '0.001'
+    -
       class: Dist::Zilla::Plugin::AutoPrereqs
       name: '@Author::ETHER/AutoPrereqs'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Prereqs::AuthorDeps
       name: '@Author::ETHER/Prereqs::AuthorDeps'
@@ -454,18 +461,18 @@
           phase: develop
           type: recommends
       name: '@Author::ETHER/pluginbundle_version'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Git::Contributors
       config:
         Dist::Zilla::Plugin::Git::Contributors:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           include_authors: 0
           include_releaser: 1
           order_by: commits
           paths: []
       name: '@Author::ETHER/Git::Contributors'
-      version: '0.029'
+      version: '0.030'
     -
       class: Dist::Zilla::Plugin::StaticInstall
       config:
@@ -500,9 +507,9 @@
           quiet: 1
           run:
             - "bash -c \"test -e .ackrc && grep -q -- '--ignore-dir=.latest' 
.ackrc || echo '--ignore-dir=.latest' >> .ackrc; if [[ `dirname '%d'` != .build 
]]; then test -e .ackrc && grep -q -- '--ignore-dir=%d' .ackrc || echo 
'--ignore-dir=%d' >> .ackrc; fi\""
-          version: '0.044'
+          version: '0.046'
       name: '@Author::ETHER/.ackrc'
-      version: '0.044'
+      version: '0.046'
     -
       class: Dist::Zilla::Plugin::Run::AfterBuild
       config:
@@ -511,9 +518,9 @@
             - "if ('%d' =~ /^%n-[.[:xdigit:]]+$/) { unlink '.latest'; symlink 
'%d', '.latest'; }"
           fatal_errors: 0
           quiet: 1
-          version: '0.044'
+          version: '0.046'
       name: '@Author::ETHER/.latest'
-      version: '0.044'
+      version: '0.046'
     -
       class: Dist::Zilla::Plugin::CheckStrictVersion
       name: '@Author::ETHER/CheckStrictVersion'
@@ -523,6 +530,13 @@
       name: '@Author::ETHER/CheckMetaResources'
       version: '0.001'
     -
+      class: Dist::Zilla::Plugin::EnsureLatestPerl
+      config:
+        Dist::Zilla::Plugin::EnsureLatestPerl:
+          Module::CoreList: '5.20170720'
+      name: '@Author::ETHER/EnsureLatestPerl'
+      version: '0.005'
+    -
       class: Dist::Zilla::Plugin::Git::Check
       config:
         Dist::Zilla::Plugin::Git::Check:
@@ -532,15 +546,15 @@
           allow_dirty_match: []
           changelog: Changes
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
       name: '@Author::ETHER/initial check'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::Git::CheckFor::MergeConflicts
       config:
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
       name: '@Author::ETHER/Git::CheckFor::MergeConflicts'
       version: '0.014'
@@ -548,14 +562,14 @@
       class: Dist::Zilla::Plugin::Git::CheckFor::CorrectBranch
       config:
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
       name: '@Author::ETHER/Git::CheckFor::CorrectBranch'
       version: '0.014'
     -
       class: Dist::Zilla::Plugin::Git::Remote::Check
       name: '@Author::ETHER/Git::Remote::Check'
-      version: 0.2.0
+      version: 0.1.2
     -
       class: Dist::Zilla::Plugin::CheckPrereqsIndexed
       name: '@Author::ETHER/CheckPrereqsIndexed'
@@ -563,7 +577,7 @@
     -
       class: Dist::Zilla::Plugin::TestRelease
       name: '@Author::ETHER/TestRelease'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Git::Check
       config:
@@ -574,10 +588,10 @@
           allow_dirty_match: []
           changelog: Changes
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
       name: '@Author::ETHER/after tests'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::CheckIssues
       name: '@Author::ETHER/CheckIssues'
@@ -585,7 +599,7 @@
     -
       class: Dist::Zilla::Plugin::UploadToCPAN
       name: '@Author::ETHER/UploadToCPAN'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::CopyFilesFromRelease
       config:
@@ -625,12 +639,12 @@
           allow_dirty_match: []
           changelog: Changes
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
         Dist::Zilla::Role::Git::StringFormatter:
           time_zone: local
       name: '@Author::ETHER/release snapshot'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::Git::Tag
       config:
@@ -638,16 +652,16 @@
           branch: ~
           changelog: Changes
           signed: 0
-          tag: '0.21'
+          tag: '0.22'
           tag_format: '%v%t'
           tag_message: v%v%t
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
         Dist::Zilla::Role::Git::StringFormatter:
           time_zone: local
       name: '@Author::ETHER/Git::Tag'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::GitHub::Update
       config:
@@ -666,11 +680,11 @@
           munge_makefile_pl: 1
         Dist::Zilla::Plugin::BumpVersionAfterRelease::Transitional: {}
       name: '@Author::ETHER/BumpVersionAfterRelease::Transitional'
-      version: '0.007'
+      version: '0.008'
     -
       class: Dist::Zilla::Plugin::NextRelease
       name: '@Author::ETHER/NextRelease'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::Git::Commit
       config:
@@ -684,12 +698,12 @@
             - (?^:^lib/.*\.pm$)
           changelog: Changes
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
         Dist::Zilla::Role::Git::StringFormatter:
           time_zone: local
       name: '@Author::ETHER/post-release commit'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::Git::Push
       config:
@@ -698,10 +712,10 @@
             - origin
           remotes_must_exist: 1
         Dist::Zilla::Role::Git::Repo:
-          'git --version': 2.11.0
+          git_version: 2.13.0
           repo_root: .
       name: '@Author::ETHER/Git::Push'
-      version: '2.041'
+      version: '2.042'
     -
       class: Dist::Zilla::Plugin::Run::AfterRelease
       config:
@@ -710,9 +724,9 @@
           quiet: 0
           run:
             - REDACTED
-          version: '0.044'
+          version: '0.046'
       name: '@Author::ETHER/install release'
-      version: '0.044'
+      version: '0.046'
     -
       class: Dist::Zilla::Plugin::Run::AfterRelease
       config:
@@ -721,13 +735,13 @@
             - 'print "release complete!\xa"'
           fatal_errors: 1
           quiet: 1
-          version: '0.044'
+          version: '0.046'
       name: '@Author::ETHER/release complete'
-      version: '0.044'
+      version: '0.046'
     -
       class: Dist::Zilla::Plugin::ConfirmRelease
       name: '@Author::ETHER/ConfirmRelease'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::MakeMaker::Awesome
       config:
@@ -742,63 +756,64 @@
           phase: configure
           type: requires
       name: ConfigureRequires
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::PPPort
       name: PPPort
-      version: '0.007'
+      version: '0.008'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':InstallModules'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':IncModules'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':TestFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':ExtraTestFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':ExecFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':PerlExecFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':ShareFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':MainModule'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':AllFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::FinderCode
       name: ':NoFiles'
-      version: '6.009'
+      version: '6.010'
     -
       class: Dist::Zilla::Plugin::VerifyPhases
       name: '@Author::ETHER/PHASE VERIFICATION'
-      version: '0.015'
+      version: '0.016'
   zilla:
     class: Dist::Zilla::Dist::Builder
     config:
       is_trial: '0'
-    version: '6.009'
+    version: '6.010'
 x_authority: cpan:FLORA
 x_contributors:
   - 'Karen Etheridge <[email protected]>'
   - 'Zefram <[email protected]>'
   - 'Alexandr Ciornii <[email protected]>'
-x_serialization_backend: 'YAML::Tiny version 1.72'
+x_serialization_backend: 'YAML::Tiny version 1.70'
+x_use_unsafe_inc: 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/Makefile.PL 
new/B-Hooks-OP-Check-0.22/Makefile.PL
--- old/B-Hooks-OP-Check-0.21/Makefile.PL       2017-05-11 16:19:07.000000000 
+0200
+++ new/B-Hooks-OP-Check-0.22/Makefile.PL       2017-07-31 18:25:08.000000000 
+0200
@@ -38,7 +38,7 @@
     "File::Spec" => 0,
     "Test::More" => 0
   },
-  "VERSION" => "0.21",
+  "VERSION" => "0.22",
   "test" => {
     "TESTS" => "t/*.t"
   }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/README 
new/B-Hooks-OP-Check-0.22/README
--- old/B-Hooks-OP-Check-0.21/README    2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/README    2017-07-31 18:25:08.000000000 +0200
@@ -1,7 +1,7 @@
 
 
 This archive contains the distribution B-Hooks-OP-Check,
-version 0.21:
+version 0.22:
 
   Wrap OP check callbacks
 
@@ -11,5 +11,5 @@
 the same terms as the Perl 5 programming language system itself.
 
 
-This README file was generated by Dist::Zilla::Plugin::Readme v6.009.
+This README file was generated by Dist::Zilla::Plugin::Readme v6.010.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/lib/B/Hooks/OP/Check.pm 
new/B-Hooks-OP-Check-0.22/lib/B/Hooks/OP/Check.pm
--- old/B-Hooks-OP-Check-0.21/lib/B/Hooks/OP/Check.pm   2017-05-11 
16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/lib/B/Hooks/OP/Check.pm   2017-07-31 
18:25:08.000000000 +0200
@@ -1,12 +1,12 @@
 use strict;
 use warnings;
-package B::Hooks::OP::Check; # git description: 0.20-3-ga7a5050
+package B::Hooks::OP::Check; # git description: 0.21-5-g968d5ca
 # ABSTRACT: Wrap OP check callbacks
 
 require 5.008001;
 use parent qw/DynaLoader/;
 
-our $VERSION = '0.21';
+our $VERSION = '0.22';
 
 sub dl_load_flags { 0x01 }
 
@@ -26,7 +26,7 @@
 
 =head1 VERSION
 
-version 0.21
+version 0.22
 
 =head1 SYNOPSIS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/ppport.h 
new/B-Hooks-OP-Check-0.22/ppport.h
--- old/B-Hooks-OP-Check-0.21/ppport.h  2017-05-11 16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/ppport.h  2017-07-31 18:25:08.000000000 +0200
@@ -4,9 +4,9 @@
 /*
 ----------------------------------------------------------------------
 
-    ppport.h -- Perl/Pollution/Portability Version 3.35
+    ppport.h -- Perl/Pollution/Portability Version 3.36
 
-    Automatically created by Devel::PPPort running under perl 5.025012.
+    Automatically created by Devel::PPPort running under perl 5.027002.
 
     Do NOT edit this file directly! -- Edit PPPort_pm.PL and the
     includes in parts/inc/ instead.
@@ -21,7 +21,7 @@
 
 =head1 NAME
 
-ppport.h - Perl/Pollution/Portability version 3.35
+ppport.h - Perl/Pollution/Portability version 3.36
 
 =head1 SYNOPSIS
 
@@ -383,7 +383,7 @@
 # Disable broken TRIE-optimization
 BEGIN { eval '${^RE_TRIE_MAXBUF} = -1' if $] >= 5.009004 && $] <= 5.009005 }
 
-my $VERSION = 3.35;
+my $VERSION = 3.36;
 
 my %opt = (
   quiet     => 0,
@@ -1669,7 +1669,6 @@
 he_dup|||
 hek_dup|||
 hfree_next_entry|||
-hfreeentries|||
 hsplit|||
 hv_assert|||
 hv_auxinit_internal|||n
@@ -1695,6 +1694,7 @@
 hv_fetch|||
 hv_fill||5.013002|
 hv_free_ent_ret|||
+hv_free_entries|||
 hv_free_ent||5.004000|
 hv_iterinit|||
 hv_iterkeysv||5.003070|
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/B-Hooks-OP-Check-0.21/t/00-report-prereqs.dd 
new/B-Hooks-OP-Check-0.22/t/00-report-prereqs.dd
--- old/B-Hooks-OP-Check-0.21/t/00-report-prereqs.dd    2017-05-11 
16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/t/00-report-prereqs.dd    2017-07-31 
18:25:08.000000000 +0200
@@ -8,7 +8,7 @@
                       },
        'develop' => {
                       'recommends' => {
-                                        
'Dist::Zilla::PluginBundle::Author::ETHER' => '0.123'
+                                        
'Dist::Zilla::PluginBundle::Author::ETHER' => '0.125'
                                       },
                       'requires' => {
                                       'Devel::PPPort' => '3.23',
@@ -24,6 +24,7 @@
                                       
'Dist::Zilla::Plugin::CheckStrictVersion' => '0',
                                       'Dist::Zilla::Plugin::ConfirmRelease' => 
'0',
                                       
'Dist::Zilla::Plugin::CopyFilesFromRelease' => '0',
+                                      'Dist::Zilla::Plugin::EnsureLatestPerl' 
=> '0',
                                       
'Dist::Zilla::Plugin::FileFinder::ByName' => '0',
                                       
'Dist::Zilla::Plugin::GenerateFile::FromShareDir' => '0',
                                       'Dist::Zilla::Plugin::Git::Check' => '0',
@@ -79,6 +80,7 @@
                                       
'Dist::Zilla::Plugin::Test::ReportPrereqs' => '0.022',
                                       'Dist::Zilla::Plugin::TestRelease' => 
'0',
                                       'Dist::Zilla::Plugin::UploadToCPAN' => 
'0',
+                                      'Dist::Zilla::Plugin::UseUnsafeInc' => 
'0',
                                       
'Dist::Zilla::PluginBundle::Author::ETHER' => '0.119',
                                       'File::Spec' => '0',
                                       'IO::Handle' => '0',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/B-Hooks-OP-Check-0.21/xt/release/changes_has_content.t 
new/B-Hooks-OP-Check-0.22/xt/release/changes_has_content.t
--- old/B-Hooks-OP-Check-0.21/xt/release/changes_has_content.t  2017-05-11 
16:19:07.000000000 +0200
+++ new/B-Hooks-OP-Check-0.22/xt/release/changes_has_content.t  2017-07-31 
18:25:08.000000000 +0200
@@ -4,7 +4,7 @@
 
 note 'Checking Changes';
 my $changes_file = 'Changes';
-my $newver = '0.21';
+my $newver = '0.22';
 my $trial_token = '-TRIAL';
 
 SKIP: {


Reply via email to