From 7acde32dcd36fad1f342918c863374d83305f4a4 Mon Sep 17 00:00:00 2001 From: Oleg G Date: Sat, 13 Sep 2014 15:14:00 +0700 Subject: [PATCH] Proper place for $VERSION --- LWP-Protocol-socks/lib/LWP/Protocol/socks.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LWP-Protocol-socks/lib/LWP/Protocol/socks.pm b/LWP-Protocol-socks/lib/LWP/Protocol/socks.pm index df8f141..fd62345 100644 --- a/LWP-Protocol-socks/lib/LWP/Protocol/socks.pm +++ b/LWP-Protocol-socks/lib/LWP/Protocol/socks.pm @@ -2,7 +2,6 @@ package LWP::Protocol::http::socks; require LWP::Protocol::http; our @ISA = qw(LWP::Protocol::http); -our $VERSION = "1.7"; LWP::Protocol::implementor('http::socks' => 'LWP::Protocol::http::socks'); sub new { @@ -104,6 +103,7 @@ sub http_connect { package LWP::Protocol::socks; require LWP::Protocol; our @ISA = qw(LWP::Protocol); +our $VERSION = "1.7"; sub request { my($self, $request, $proxy, $arg, $size, $timeout) = @_;