From d645c914b09f70f4cc102cc893aa104b3ba9f361 Mon Sep 17 00:00:00 2001 From: Stephen Thirlwall Date: Wed, 31 Aug 2011 10:36:35 +1000 Subject: [PATCH] Removed explicit $VERSION from lib/Log/Any.pm Dist::Zilla won't write a $VERSION if you've manually set it. [PkgVersion] skipping lib/Log/Any.pm: assigns to $VERSION Assuming the manual $VERSION is an oversight rather than intentional. --- lib/Log/Any.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Log/Any.pm b/lib/Log/Any.pm index a6dd93a..5b4dbeb 100644 --- a/lib/Log/Any.pm +++ b/lib/Log/Any.pm @@ -2,8 +2,6 @@ package Log::Any; use strict; use warnings; -our $VERSION = '0.12'; - # Require rather than use, because it depends on subroutines defined below # require Log::Any::Adapter::Null;