From 1fc9c3c136d583d58fcd950967566bfe01333df8 Mon Sep 17 00:00:00 2001 From: Ivan Wills Date: Sun, 1 May 2016 13:02:04 +1000 Subject: [PATCH] Updating for release of version 0.4.4 --- Changes | 9 +++++++++ bin/tailt | 4 ++-- lib/Tail/Tool.pm | 4 ++-- lib/Tail/Tool/File.pm | 4 ++-- lib/Tail/Tool/Plugin/GroupLines.pm | 4 ++-- lib/Tail/Tool/Plugin/Highlight.pm | 4 ++-- lib/Tail/Tool/Plugin/Ignore.pm | 4 ++-- lib/Tail/Tool/Plugin/Match.pm | 4 ++-- lib/Tail/Tool/Plugin/Replace.pm | 4 ++-- lib/Tail/Tool/Plugin/Spacing.pm | 4 ++-- lib/Tail/Tool/PostProcess.pm | 4 ++-- lib/Tail/Tool/PreProcess.pm | 4 ++-- lib/Tail/Tool/Regex.pm | 4 ++-- lib/Tail/Tool/RegexList.pm | 4 ++-- 14 files changed, 35 insertions(+), 26 deletions(-) diff --git a/Changes b/Changes index 5e91566..fed6a69 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,14 @@ Revision history for Tail-Tool +0.4.4 2016-05-01 + Updating for release of version 0.4.4 + Removed reference to removed file (Ivan Wills) + Updated license date (Ivan Wills) + Updated config to build/test (Ivan Wills) + Removed perl 5.8 from travis (Ivan Wills) + Cleaned up boilerplate (Ivan Wills) + VTide and editor configs (Ivan Wills) + 0.4.3 2015-09-13 Updating for release of version 0.4.3 Removed Makefile (Ivan Wills) diff --git a/bin/tailt b/bin/tailt index f3cca7c..c91cecd 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to tailt version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool.pm b/lib/Tail/Tool.pm index 5fc929f..fc32faa 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/File.pm b/lib/Tail/Tool/File.pm index de287e2..2732750 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::File version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/GroupLines.pm b/lib/Tail/Tool/Plugin/GroupLines.pm index 9459ee9..5340940 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Plugin::GroupLines version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Highlight.pm b/lib/Tail/Tool/Plugin/Highlight.pm index 7b99664..923a8df 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Plugin::Highlight version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Ignore.pm b/lib/Tail/Tool/Plugin/Ignore.pm index 9bbeaeb..ded29e9 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Plugin::Ignore version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Match.pm b/lib/Tail/Tool/Plugin/Match.pm index a05fd2c..a07a0bd 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Plugin::Match version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Replace.pm b/lib/Tail/Tool/Plugin/Replace.pm index 8708239..c430feb 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Plugin::Replace version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Spacing.pm b/lib/Tail/Tool/Plugin/Spacing.pm index 071734d..8e24c54 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Plugin::Spacing version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/PostProcess.pm b/lib/Tail/Tool/PostProcess.pm index 48dd275..0b60270 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::PostProcess version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/PreProcess.pm b/lib/Tail/Tool/PreProcess.pm index 64ff238..ddc2ffa 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::PreProcess version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Regex.pm b/lib/Tail/Tool/Regex.pm index 7114ff1..f4ec489 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::Regex version 0.4.4. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/RegexList.pm b/lib/Tail/Tool/RegexList.pm index 5412fb7..2e0812e 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.3'); +our $VERSION = version->new('0.4.4'); 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.3. +This documentation refers to Tail::Tool::RegexList version 0.4.4. =head1 SYNOPSIS