diff --git a/Changes b/Changes index 543571c..5e91566 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ Revision history for Tail-Tool +0.4.3 2015-09-13 + Updating for release of version 0.4.3 + Removed Makefile (Ivan Wills) + Cleaned up documentation (Ivan Wills) + Added Perl 5.22 to list of perl versions to build with (Ivan Wills) + 0.4.2 2015-06-03 Updating for release of version 0.4.2 Year updated (Ivan Wills) diff --git a/bin/tailt b/bin/tailt index 1d98069..f3cca7c 100755 --- a/bin/tailt +++ b/bin/tailt @@ -19,7 +19,7 @@ use TryCatch; use YAML qw/LoadFile DumpFile Dump/; use File::HomeDir; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); my ($name) = $PROGRAM_NAME =~ m{^.*/(.*?)$}mxs; my %option = ( @@ -846,7 +846,7 @@ tailt - Tail files using the Tail::Tool library =head1 VERSION -This documentation refers to tailt version 0.4.2. +This documentation refers to tailt version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool.pm b/lib/Tail/Tool.pm index 619a1f4..5fc929f 100644 --- a/lib/Tail/Tool.pm +++ b/lib/Tail/Tool.pm @@ -13,7 +13,7 @@ use Carp; use English qw/ -no_match_vars /; use Tail::Tool::File; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); has files => ( is => 'rw', @@ -234,7 +234,7 @@ Tail::Tool - Tool for sophisticated tailing of files =head1 VERSION -This documentation refers to Tail::Tool version 0.4.2. +This documentation refers to Tail::Tool version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/File.pm b/lib/Tail/Tool/File.pm index a62fa91..4526ea5 100644 --- a/lib/Tail/Tool/File.pm +++ b/lib/Tail/Tool/File.pm @@ -14,7 +14,7 @@ use Scalar::Util qw/openhandle/; use English qw/ -no_match_vars /; use AnyEvent; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); has name => ( is => 'rw', @@ -272,7 +272,7 @@ Tail::Tool::File - Looks after individual files =head1 VERSION -This documentation refers to Tail::Tool::File version 0.4.2. +This documentation refers to Tail::Tool::File version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/GroupLines.pm b/lib/Tail/Tool/Plugin/GroupLines.pm index dd0151b..9459ee9 100644 --- a/lib/Tail/Tool/Plugin/GroupLines.pm +++ b/lib/Tail/Tool/Plugin/GroupLines.pm @@ -16,7 +16,7 @@ use AnyEvent; extends 'Tail::Tool::PreProcess'; with 'Tail::Tool::RegexList'; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); has end => ( is => 'rw', @@ -84,7 +84,7 @@ Tail::Tool::Plugin::GroupLines - Groups real lines of a log file so that other p =head1 VERSION -This documentation refers to Tail::Tool::Plugin::GroupLines version 0.4.2. +This documentation refers to Tail::Tool::Plugin::GroupLines version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Highlight.pm b/lib/Tail/Tool/Plugin/Highlight.pm index 8df94f8..7b99664 100644 --- a/lib/Tail/Tool/Plugin/Highlight.pm +++ b/lib/Tail/Tool/Plugin/Highlight.pm @@ -17,7 +17,7 @@ use Readonly; extends 'Tail::Tool::PostProcess'; with 'Tail::Tool::RegexList'; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); Readonly my @COLOURS => qw/ red @@ -109,7 +109,7 @@ Tail::Tool::Plugin::Highlight - Highlights any text that matches the supplied re =head1 VERSION -This documentation refers to Tail::Tool::Plugin::Highlight version 0.4.2. +This documentation refers to Tail::Tool::Plugin::Highlight version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Ignore.pm b/lib/Tail/Tool/Plugin/Ignore.pm index 212f80c..9bbeaeb 100644 --- a/lib/Tail/Tool/Plugin/Ignore.pm +++ b/lib/Tail/Tool/Plugin/Ignore.pm @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /; extends 'Tail::Tool::PreProcess'; with 'Tail::Tool::RegexList'; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); sub process { my ($self, $line) = @_; @@ -44,7 +44,7 @@ Tail::Tool::Plugin::Ignore - =head1 VERSION -This documentation refers to Tail::Tool::Plugin::Ignore version 0.4.2. +This documentation refers to Tail::Tool::Plugin::Ignore version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Match.pm b/lib/Tail/Tool/Plugin/Match.pm index 4c99950..a05fd2c 100644 --- a/lib/Tail/Tool/Plugin/Match.pm +++ b/lib/Tail/Tool/Plugin/Match.pm @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /; extends 'Tail::Tool::PreProcess'; with 'Tail::Tool::RegexList'; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); sub process { my ($self, $line) = @_; @@ -44,7 +44,7 @@ Tail::Tool::Plugin::Match - Checks that each line passed matches a regex =head1 VERSION -This documentation refers to Tail::Tool::Plugin::Match version 0.4.2. +This documentation refers to Tail::Tool::Plugin::Match version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Replace.pm b/lib/Tail/Tool/Plugin/Replace.pm index a940519..8708239 100644 --- a/lib/Tail/Tool/Plugin/Replace.pm +++ b/lib/Tail/Tool/Plugin/Replace.pm @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /; extends 'Tail::Tool::PreProcess'; with 'Tail::Tool::RegexList'; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); sub process { my ($self, $line) = @_; @@ -54,7 +54,7 @@ Tail::Tool::Plugin::Replace - =head1 VERSION -This documentation refers to Tail::Tool::Plugin::Replace version 0.4.2. +This documentation refers to Tail::Tool::Plugin::Replace version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Spacing.pm b/lib/Tail/Tool/Plugin/Spacing.pm index 7375026..071734d 100644 --- a/lib/Tail/Tool/Plugin/Spacing.pm +++ b/lib/Tail/Tool/Plugin/Spacing.pm @@ -15,7 +15,7 @@ use English qw/ -no_match_vars /; extends 'Tail::Tool::PreProcess'; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); has last_time => ( is => 'rw', @@ -91,7 +91,7 @@ Tail::Tool::Plugin::Spacing - Prints spaces when there has been a pause in runni =head1 VERSION -This documentation refers to Tail::Tool::Plugin::Spacing version 0.4.2. +This documentation refers to Tail::Tool::Plugin::Spacing version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/PostProcess.pm b/lib/Tail/Tool/PostProcess.pm index 6b3546d..48dd275 100644 --- a/lib/Tail/Tool/PostProcess.pm +++ b/lib/Tail/Tool/PostProcess.pm @@ -11,7 +11,7 @@ use warnings; use version; use English qw/ -no_match_vars /; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); has post => ( is => 'ro', @@ -36,7 +36,7 @@ Tail::Tool::PostProcess - The parent module for plugins that change individual l =head1 VERSION -This documentation refers to Tail::Tool::PostProcess version 0.4.2. +This documentation refers to Tail::Tool::PostProcess version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/PreProcess.pm b/lib/Tail/Tool/PreProcess.pm index e70b514..64ff238 100644 --- a/lib/Tail/Tool/PreProcess.pm +++ b/lib/Tail/Tool/PreProcess.pm @@ -12,7 +12,7 @@ use version; use Carp; use English qw/ -no_match_vars /; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); has post => ( is => 'ro', @@ -38,7 +38,7 @@ Tail::Tool::PreProcess - Parent module for Plugins that perform pre-processing t =head1 VERSION -This documentation refers to Tail::Tool::PreProcess version 0.4.2. +This documentation refers to Tail::Tool::PreProcess version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Regex.pm b/lib/Tail/Tool/Regex.pm index 51e15b7..7114ff1 100644 --- a/lib/Tail/Tool/Regex.pm +++ b/lib/Tail/Tool/Regex.pm @@ -13,7 +13,7 @@ use Moose::Util::TypeConstraints; use English qw/ -no_match_vars /; use Term::ANSIColor qw/colored/; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); coerce 'RegexpRef' => from 'Str' @@ -76,7 +76,7 @@ Tail::Tool::Regex - Base class for regex details =head1 VERSION -This documentation refers to Tail::Tool::Regex version 0.4.2. +This documentation refers to Tail::Tool::Regex version 0.4.3. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/RegexList.pm b/lib/Tail/Tool/RegexList.pm index 30a6dbb..5412fb7 100644 --- a/lib/Tail/Tool/RegexList.pm +++ b/lib/Tail/Tool/RegexList.pm @@ -14,7 +14,7 @@ use version; use English qw/ -no_match_vars /; use Tail::Tool::Regex; -our $VERSION = version->new('0.4.2'); +our $VERSION = version->new('0.4.3'); subtype 'ArrayRefRegex' => as 'ArrayRef[Tail::Tool::Regex]'; @@ -107,7 +107,7 @@ Tail::Tool::RegexList - =head1 VERSION -This documentation refers to Tail::Tool::RegexList version 0.4.2. +This documentation refers to Tail::Tool::RegexList version 0.4.3. =head1 SYNOPSIS