From 470e3fc1f65a2f8f2420161456af4cc8dda49787 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 6 Oct 2017 17:15:34 +1300 Subject: Bump version number --- Changes | 5 +++++ lib/List/Breakdown.pm | 4 ++-- t/errors.t | 2 +- t/intervals.t | 2 +- t/monitoring.t | 2 +- t/records.t | 2 +- t/words.t | 2 +- 7 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index fc765d2..99a7f42 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,11 @@ until #perl told me to calm down. All of those versions are documented here anyway for comprehensiveness' sake. Entries with "No important changes" are likely to be trivial things like documentation fixes or Perl::Tidy runs. +0.17 2017-10-06 + + - Correct problem with use of comparisons to "Inf" causing failing tests on at + least Perl 5.8 by using direct definedness test instead + 0.16 2017-10-06 - Mention exporting policy in SYNOPSIS and in the documentation for the diff --git a/lib/List/Breakdown.pm b/lib/List/Breakdown.pm index 8aac1c9..291a329 100644 --- a/lib/List/Breakdown.pm +++ b/lib/List/Breakdown.pm @@ -17,7 +17,7 @@ use base qw(Exporter); ## no critic (ProhibitUseBase) our @EXPORT_OK = 'breakdown'; # Specify package version -our $VERSION = '0.16'; +our $VERSION = '0.17'; # Dispatch table of functions to handle different ref types for the spec # hashref's values @@ -104,7 +104,7 @@ List::Breakdown - Build sublist structures matching conditions =head1 VERSION -Version 0.16 +Version 0.17 =head1 DESCRIPTION diff --git a/t/errors.t b/t/errors.t index bd6af9f..f493027 100644 --- a/t/errors.t +++ b/t/errors.t @@ -8,7 +8,7 @@ use Test::More tests => 7; use List::Breakdown 'breakdown'; -our $VERSION = '0.16'; +our $VERSION = '0.17'; my @t = 1 .. 3; diff --git a/t/intervals.t b/t/intervals.t index 55a36fd..889a22d 100644 --- a/t/intervals.t +++ b/t/intervals.t @@ -8,7 +8,7 @@ use Test::More tests => 1; use List::Breakdown 'breakdown'; -our $VERSION = '0.16'; +our $VERSION = '0.17'; ## no critic (ProhibitMagicNumbers,ProhibitLeadingZeros) my @numbers = ( 1, 32, 3718.4, 0x56, 0777, 3.14, -5, 1.2e5 ); diff --git a/t/monitoring.t b/t/monitoring.t index edae7ff..b5b6689 100644 --- a/t/monitoring.t +++ b/t/monitoring.t @@ -8,7 +8,7 @@ use Test::More tests => 1; use List::Breakdown 'breakdown'; -our $VERSION = '0.16'; +our $VERSION = '0.17'; my @checks = ( { diff --git a/t/records.t b/t/records.t index 5dbcdf7..89e657b 100644 --- a/t/records.t +++ b/t/records.t @@ -8,7 +8,7 @@ use Test::More tests => 1; use List::Breakdown 'breakdown'; -our $VERSION = '0.16'; +our $VERSION = '0.17'; my @records = ( "NEW CUSTOMER John O''Connor\r 2017-01-01", diff --git a/t/words.t b/t/words.t index 1036b31..c4ada52 100644 --- a/t/words.t +++ b/t/words.t @@ -8,7 +8,7 @@ use Test::More tests => 1; use List::Breakdown 'breakdown'; -our $VERSION = '0.16'; +our $VERSION = '0.17'; my @words = qw(foo bar baz quux wibble florb); my $filters = { -- cgit v1.2.3