From: Nicholas Clark <nick@ccl4.org>
Date: Sat, 7 Apr 2007 21:36:19 +0000 (+0000)
Subject: Upgrade to Module-Pluggable 3.6
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=abcddaf09426889113cc846e2848f1e5ee045f06;p=p5sagit%2Fp5-mst-13.2.git

Upgrade to Module-Pluggable 3.6

p4raw-id: //depot/perl@30869
---

diff --git a/lib/Module/Pluggable.pm b/lib/Module/Pluggable.pm
index 543e420..1020453 100644
--- a/lib/Module/Pluggable.pm
+++ b/lib/Module/Pluggable.pm
@@ -9,7 +9,7 @@ use Module::Pluggable::Object;
 # Peter Gibbons: I wouldn't say I've been missing it, Bob! 
 
 
-$VERSION = '3.5_01';
+$VERSION = '3.6';
 
 sub import {
     my $class        = shift;
diff --git a/lib/Module/Pluggable/Object.pm b/lib/Module/Pluggable/Object.pm
index aa4ca89..61951bd 100644
--- a/lib/Module/Pluggable/Object.pm
+++ b/lib/Module/Pluggable/Object.pm
@@ -1,7 +1,5 @@
 package Module::Pluggable::Object;
 
-$VERSION = '3.5_01';
-
 use strict;
 use File::Find ();
 use File::Basename;
@@ -9,6 +7,10 @@ use File::Spec::Functions qw(splitdir catdir curdir catfile abs2rel);
 use Carp qw(croak carp);
 use Devel::InnerPackage;
 use Data::Dumper;
+use vars qw($VERSION);
+
+$VERSION = '3.6';
+
 
 sub new {
     my $class = shift;