46b0e3
From 76f1ac50f4affebf08c1ba71ee1dc31cd2a6a950 Mon Sep 17 00:00:00 2001
46b0e3
From: Jitka Plesnikova <jplesnik@redhat.com>
46b0e3
Date: Mon, 1 Jun 2020 13:48:33 +0200
46b0e3
Subject: [PATCH] Upgrade to 3.14
46b0e3
46b0e3
---
46b0e3
 lib/Thread/Queue.pm | 6 +++---
46b0e3
 1 file changed, 3 insertions(+), 3 deletions(-)
46b0e3
46b0e3
diff --git a/lib/Thread/Queue.pm b/lib/Thread/Queue.pm
46b0e3
index bcdf11d..731d0b2 100644
46b0e3
--- a/lib/Thread/Queue.pm
46b0e3
+++ b/lib/Thread/Queue.pm
46b0e3
@@ -3,7 +3,7 @@ package Thread::Queue;
46b0e3
 use strict;
46b0e3
 use warnings;
46b0e3
 
46b0e3
-our $VERSION = '3.13';
46b0e3
+our $VERSION = '3.14';          # remember to update version in POD!
46b0e3
 $VERSION = eval $VERSION;
46b0e3
 
46b0e3
 use threads::shared 1.21;
46b0e3
@@ -318,7 +318,7 @@ Thread::Queue - Thread-safe queues
46b0e3
 
46b0e3
 =head1 VERSION
46b0e3
 
46b0e3
-This document describes Thread::Queue version 3.13
46b0e3
+This document describes Thread::Queue version 3.14
46b0e3
 
46b0e3
 =head1 SYNOPSIS
46b0e3
 
46b0e3
@@ -547,7 +547,7 @@ VARIABLE"> the queue inside a local block:
46b0e3
 =item ->peek(INDEX)
46b0e3
 
46b0e3
 Returns an item from the queue without dequeuing anything.  Defaults to the
46b0e3
-the head of queue (at index position 0) if no index is specified.  Negative
46b0e3
+head of queue (at index position 0) if no index is specified.  Negative
46b0e3
 index values are supported as with L<arrays|perldata/"Subscripts"> (i.e., -1
46b0e3
 is the end of the queue, -2 is next to last, and so on).
46b0e3
 
46b0e3
-- 
46b0e3
2.25.4
46b0e3