From 52414d3e18c8ac00bd621cfd117fa01473a26d53 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 6 Oct 2017 11:31:51 +1300 Subject: Bump version numbers --- Changes | 6 ++++++ 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, 13 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index c576519..35692d6 100644 --- a/Changes +++ b/Changes @@ -5,6 +5,12 @@ 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.15 2017-10-06 + + - Added a syntax to filter numeric data within intervals + - Added documentation and tests for new interval syntax + - Altered error tests to accommodate the new interval syntax + 0.14 2017-10-05 - Several documentation fixes diff --git a/lib/List/Breakdown.pm b/lib/List/Breakdown.pm index 766098f..eed4bfe 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.14'; +our $VERSION = '0.15'; # Dispatch table of functions to handle different ref types for the spec # hashref's values @@ -101,7 +101,7 @@ List::Breakdown - Build list sublists matching conditions =head1 VERSION -Version 0.14 +Version 0.15 =head1 DESCRIPTION diff --git a/t/errors.t b/t/errors.t index 499310e..4d769da 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.14'; +our $VERSION = '0.15'; my @t = 1 .. 3; diff --git a/t/intervals.t b/t/intervals.t index 53f4724..798bd40 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.14'; +our $VERSION = '0.15'; ## 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 740f1a6..92e4217 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.14'; +our $VERSION = '0.15'; my @checks = ( { diff --git a/t/records.t b/t/records.t index 3ea791d..36b95ef 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.14'; +our $VERSION = '0.15'; my @records = ( "NEW CUSTOMER John O''Connor\r 2017-01-01", diff --git a/t/words.t b/t/words.t index 7e1f7c4..1f3b188 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.14'; +our $VERSION = '0.15'; my @words = qw(foo bar baz quux wibble florb); my $filters = { -- cgit v1.2.3