From a4362f96e0ff0283d6b3558bb512afcec658a199 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 14 Dec 2017 11:11:22 +1300 Subject: Remove unneeded ## no critic rule --- lib/List/Breakdown.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/List/Breakdown.pm b/lib/List/Breakdown.pm index 054128c..5529292 100644 --- a/lib/List/Breakdown.pm +++ b/lib/List/Breakdown.pm @@ -1,4 +1,3 @@ -## no critic (RequirePODUseEncodingUTF8) package List::Breakdown; # Force me to write this properly -- cgit v1.2.3 From c75d7523ce8c524e1f65b9a89ae73b4a97a8ff2b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Feb 2018 17:02:47 +1300 Subject: Add Module::Signature line to Makefile.PL --- Makefile.PL | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.PL b/Makefile.PL index 9e2ccf8..e4f1ee7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,6 +4,7 @@ use warnings; use ExtUtils::MakeMaker; WriteMakefile( + (MM->can('signature_target') ? (SIGN => 1) : ()), NAME => 'List::Breakdown', AUTHOR => 'Tom Ryder ', VERSION_FROM => 'lib/List/Breakdown.pm', -- cgit v1.2.3 From a1d86cce965ca336adda2b4abde9a512f9cf479f Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Feb 2018 17:04:50 +1300 Subject: Bump version number to 0.21 --- Makefile.PL | 2 +- README.markdown | 2 +- 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 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index e4f1ee7..8742db5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -26,7 +26,7 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'List::Breakdown' => { - version => '0.20', + version => '0.21', file => 'lib/List/Breakdown.pm', }, }, diff --git a/README.markdown b/README.markdown index 1e7441e..6d26ef8 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ List::Breakdown - Build sublist structures matching conditions # VERSION -Version 0.20 +Version 0.21 # SYNOPSIS diff --git a/lib/List/Breakdown.pm b/lib/List/Breakdown.pm index 5529292..548fc50 100644 --- a/lib/List/Breakdown.pm +++ b/lib/List/Breakdown.pm @@ -16,7 +16,7 @@ use base qw(Exporter); ## no critic (ProhibitUseBase) our @EXPORT_OK = 'breakdown'; # Specify package version -our $VERSION = '0.20'; +our $VERSION = '0.21'; # Dispatch table of functions to handle different ref types for the spec # hashref's values @@ -103,7 +103,7 @@ List::Breakdown - Build sublist structures matching conditions =head1 VERSION -Version 0.20 +Version 0.21 =head1 SYNOPSIS diff --git a/t/errors.t b/t/errors.t index e40e8ee..3b46ce5 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.20'; +our $VERSION = '0.21'; my @t = 1 .. 3; diff --git a/t/intervals.t b/t/intervals.t index 5979d88..b3ecebb 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.20'; +our $VERSION = '0.21'; ## 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 a7cb2ea..4ef5d2f 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.20'; +our $VERSION = '0.21'; my @checks = ( { diff --git a/t/records.t b/t/records.t index 6b2ed96..86d4e14 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.20'; +our $VERSION = '0.21'; my @records = ( "NEW CUSTOMER John O''Connor\r 2017-01-01", diff --git a/t/words.t b/t/words.t index 59387b7..696af7e 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.20'; +our $VERSION = '0.21'; my @words = qw(foo bar baz quux wibble florb); my $filters = { -- cgit v1.2.3 From e23270410b513cb774065adf0c37fbfb364aca72 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 21 Feb 2018 17:06:32 +1300 Subject: Update Changes --- Changes | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Changes b/Changes index 8c2ee5d..cc47ff7 100644 --- a/Changes +++ b/Changes @@ -6,6 +6,11 @@ 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.21 2018-02-21 + + - Update repository metadata + - Begin signing distributions with Module::Signature + 0.20 2017-10-07 - Add LICENSE to MANIFEST -- cgit v1.2.3