diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2021-07-01 11:54:23 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2021-07-01 11:54:23 +1200 |
commit | 02b8fe4af6c9a226dfcf873b05feac0fd8c50a25 (patch) | |
tree | 680717456f30df7ba859e0e6351b5a1feee75be6 | |
parent | Merge branch 'release/v0.24' (diff) | |
parent | Correct Changes file from previous release (diff) | |
download | List-Breakdown-develop.tar.gz List-Breakdown-develop.zip |
* hotfix/v0.25:
Correct Changes file from previous release
-rw-r--r-- | Changes | 10 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | lib/List/Breakdown.pm | 4 | ||||
-rw-r--r-- | t/errors.t | 2 | ||||
-rw-r--r-- | t/intervals.t | 2 | ||||
-rw-r--r-- | t/monitoring.t | 2 | ||||
-rw-r--r-- | t/records.t | 2 | ||||
-rw-r--r-- | t/words.t | 2 |
9 files changed, 18 insertions, 10 deletions
@@ -6,7 +6,15 @@ 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.24 2021-01-02 +0.25 2021-07-01 + + - Correct Changes file from previous release + +0.25 2021-07-01 + + - Update URLs in Makefile.PL + +0.23 2021-01-02 - Internal refactoring for code quality diff --git a/Makefile.PL b/Makefile.PL index 9c69f4f..b50f4a5 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -26,7 +26,7 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'List::Breakdown' => { - version => '0.24', + version => '0.25', file => 'lib/List/Breakdown.pm', }, }, @@ -4,7 +4,7 @@ List::Breakdown - Build sublist structures matching conditions # VERSION -Version 0.24 +Version 0.25 # SYNOPSIS diff --git a/lib/List/Breakdown.pm b/lib/List/Breakdown.pm index 24a82a0..a552f17 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.24'; +our $VERSION = '0.25'; # 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.24 +Version 0.25 =head1 SYNOPSIS @@ -8,7 +8,7 @@ use Test::More tests => 7; use List::Breakdown 'breakdown'; -our $VERSION = '0.24'; +our $VERSION = '0.25'; my @t = 1 .. 3; diff --git a/t/intervals.t b/t/intervals.t index e6d7d6b..83e1acf 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.24'; +our $VERSION = '0.25'; ## 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 5a9cee7..778f227 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.24'; +our $VERSION = '0.25'; my @checks = ( { diff --git a/t/records.t b/t/records.t index da571e5..5bae5a0 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.24'; +our $VERSION = '0.25'; my @records = ( "NEW CUSTOMER John O''Connor\r 2017-01-01", @@ -8,7 +8,7 @@ use Test::More tests => 1; use List::Breakdown 'breakdown'; -our $VERSION = '0.24'; +our $VERSION = '0.25'; my @words = qw(foo bar baz quux wibble florb); my $filters = { |