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