From 96e19a394fb2cf372bf7051b3d43662d11a44740 Mon Sep 17 00:00:00 2001 From: Alessandro Vullo Date: Sun, 4 Mar 2018 11:24:18 +0000 Subject: [PATCH] New release: bug-fix. --- Changes | 3 +++ README | 2 +- lib/AVLTree.pm | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index d7a5ad6..567263e 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl module AVLTree +0.1.7 Sun 04 Mar 2018 + * Bug fix: tree traversal methods support with multi-threaded perls + 0.1.6 Sat 03 Mar 2018 * Support for tree traversal methods diff --git a/README b/README index d0c7f5e..9db065f 100644 --- a/README +++ b/README @@ -58,7 +58,7 @@ reports, patches etc. LICENSE AND COPYRIGHT -Copyright (C) 2018 Alessandro Vullo +Copyright (C) [2017-2018] Alessandro Vullo This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published diff --git a/lib/AVLTree.pm b/lib/AVLTree.pm index f0bc6ce..866dcd7 100644 --- a/lib/AVLTree.pm +++ b/lib/AVLTree.pm @@ -4,7 +4,7 @@ use 5.008; use strict; use warnings; -our $VERSION = '0.1.6'; +our $VERSION = '0.1.7'; our $ENABLE_DEBUG = 0; require XSLoader; @@ -19,7 +19,7 @@ AVLTree - Perl extension for efficient creation and manipulation of AVL balanced =head1 VERSION -Version 0.1.6 +Version 0.1.7 =head1 DESCRIPTION