Fix uninitialized-value warnings in Thread::Queue
authorAaron Crane <arc@cpan.org>
Tue, 18 Mar 2014 17:17:54 +0000 (17:17 +0000)
committerAaron Crane <arc@cpan.org>
Tue, 18 Mar 2014 17:19:46 +0000 (17:19 +0000)
This involves a version bump, to 3.05.

Porting/Maintainers.pl
dist/Thread-Queue/lib/Thread/Queue.pm

index e6520b3..906ac90 100755 (executable)
@@ -1166,8 +1166,12 @@ use File::Glob qw(:case);
         },
     },
 
+    # Jerry Hedden does take patches that are applied to blead first, even
+    # though that can be hard to discern from the Git history; so it's
+    # correct for this (and Thread::Semaphore, threads, and threads::shared)
+    # to be under dist/ rather than cpan/
     'Thread::Queue' => {
-        'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.04.tar.gz',
+        'DISTRIBUTION' => 'JDHEDDEN/Thread-Queue-3.05.tar.gz',
         'FILES'        => q[dist/Thread-Queue],
         'EXCLUDED'     => [
             qr{^examples/},
index 08210ca..316644a 100644 (file)
@@ -3,7 +3,7 @@ package Thread::Queue;
 use strict;
 use warnings;
 
-our $VERSION = '3.04';
+our $VERSION = '3.05';
 $VERSION = eval $VERSION;
 
 use threads::shared 1.21;
@@ -231,7 +231,7 @@ sub _validate_index
         require Carp;
         my ($method) = (caller(1))[3];
         my $class_name = ref($self);
-        $method =~ s/$class_name:://;
+        $method =~ s/$class_name\:://;
         $index = 'undef' if (! defined($index));
         Carp::croak("Invalid 'index' argument ($index) to '$method' method");
     }
@@ -253,7 +253,7 @@ sub _validate_count
         require Carp;
         my ($method) = (caller(1))[3];
         my $class_name = ref($self);
-        $method =~ s/$class_name:://;
+        $method =~ s/$class_name\:://;
         $count = 'undef' if (! defined($count));
         Carp::croak("Invalid 'count' argument ($count) to '$method' method");
     }
@@ -273,7 +273,7 @@ sub _validate_timeout
         require Carp;
         my ($method) = (caller(1))[3];
         my $class_name = ref($self);
-        $method =~ s/$class_name:://;
+        $method =~ s/$class_name\:://;
         $timeout = 'undef' if (! defined($timeout));
         Carp::croak("Invalid 'timeout' argument ($timeout) to '$method' method");
     }
@@ -289,7 +289,7 @@ Thread::Queue - Thread-safe queues
 
 =head1 VERSION
 
-This document describes Thread::Queue version 3.04
+This document describes Thread::Queue version 3.05
 
 =head1 SYNOPSIS