aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes16
-rw-r--r--MANIFEST.SKIP5
-rw-r--r--Makefile.PL8
-rw-r--r--README.md (renamed from README.markdown)8
-rw-r--r--lib/List/Breakdown.pm4
-rw-r--r--t/errors.t2
-rw-r--r--t/intervals.t2
-rw-r--r--t/monitoring.t2
-rw-r--r--t/records.t2
-rw-r--r--t/words.t2
10 files changed, 34 insertions, 17 deletions
diff --git a/Changes b/Changes
index 216bcb7..89750f8 100644
--- a/Changes
+++ b/Changes
@@ -6,6 +6,22 @@ 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.26 2021-07-01
+
+ - Correct Changes file from previous release
+
+0.25 2021-07-01
+
+ - Correct Changes file from previous release
+
+0.24 2021-07-01
+
+ - Update URLs in Makefile.PL
+
+0.23 2021-01-02
+
+ - Internal refactoring for code quality
+
0.22 2018-05-30
- Adjust Exporter syntax
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index dd6fd82..ac675da 100644
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -1,9 +1,10 @@
-^\.git
^List-Breakdown-.*
^MANIFEST\.SKIP$
^MYMETA\.
^Makefile$
^Makefile\.old$
-^README\.markdown
+^README\.md
+^\.git
^blib
+^perlcriticrc$
^pm_to_blib$
diff --git a/Makefile.PL b/Makefile.PL
index f08bb4d..f863b1d 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -26,16 +26,16 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'List::Breakdown' => {
- version => '0.22',
+ version => '0.26',
file => 'lib/List/Breakdown.pm',
},
},
resources => {
- homepage => 'https://sanctum.geek.nz/cgit/List-Breakdown.git/',
+ homepage => 'https://dev.sanctum.geek.nz/cgit/List-Breakdown.git/',
repository => {
type => 'git',
- url => 'https://sanctum.geek.nz/code/List-Breakdown.git/',
- web => 'https://sanctum.geek.nz/cgit/List-Breakdown.git/',
+ url => 'https://dev.sanctum.geek.nz/code/List-Breakdown.git/',
+ web => 'https://dev.sanctum.geek.nz/cgit/List-Breakdown.git/',
},
},
},
diff --git a/README.markdown b/README.md
index f0febff..283729f 100644
--- a/README.markdown
+++ b/README.md
@@ -4,7 +4,7 @@ List::Breakdown - Build sublist structures matching conditions
# VERSION
-Version 0.22
+Version 0.26
# SYNOPSIS
@@ -44,15 +44,15 @@ This module assists you in making a _breakdown_ of a list, copying and
filtering its items into a structured bucket layout according to your
specifications. Think of it as a syntax for [`grep`](https://metacpan.org/pod/perlfunc#grep-BLOCK-LIST) that returns named and structured results from one list.
-It differs from the excellent [List::Categorize](https://metacpan.org/pod/List::Categorize) in the use
+It differs from the excellent [List::Categorize](https://metacpan.org/pod/List%3A%3ACategorize) in the use
of references to define each category, and in not requiring only one final
category for any given item; an item can end up in the result set for more than
one filter.
If you want to divide or _partition_ your list so that each item can only
appear in one category, you may want either
-[List::MoreUtils](https://metacpan.org/pod/List::MoreUtils#Partitioning) or possibly
-[Set::Partition](https://metacpan.org/pod/Set::Partition) instead.
+[List::MoreUtils](https://metacpan.org/pod/List%3A%3AMoreUtils#Partitioning) or possibly
+[Set::Partition](https://metacpan.org/pod/Set%3A%3APartition) instead.
# SUBROUTINES/METHODS
diff --git a/lib/List/Breakdown.pm b/lib/List/Breakdown.pm
index 7a32fa5..319485e 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 = qw(breakdown);
# Specify package version
-our $VERSION = '0.22';
+our $VERSION = '0.26';
# 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.22
+Version 0.26
=head1 SYNOPSIS
diff --git a/t/errors.t b/t/errors.t
index b39d740..154911d 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.22';
+our $VERSION = '0.26';
my @t = 1 .. 3;
diff --git a/t/intervals.t b/t/intervals.t
index 327b529..8d8c131 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.22';
+our $VERSION = '0.26';
## 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 b7b6f71..df979c2 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.22';
+our $VERSION = '0.26';
my @checks = (
{
diff --git a/t/records.t b/t/records.t
index 1ef408f..8f2e367 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.22';
+our $VERSION = '0.26';
my @records = (
"NEW CUSTOMER John O''Connor\r 2017-01-01",
diff --git a/t/words.t b/t/words.t
index 11e01f1..e2025f2 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.22';
+our $VERSION = '0.26';
my @words = qw(foo bar baz quux wibble florb);
my $filters = {