From 79b4e997cd36481e1db81986e4d5ee7a6317ea30 Mon Sep 17 00:00:00 2001 From: Ivan Wills Date: Mon, 10 Apr 2017 19:59:49 +1000 Subject: [PATCH] Updating for release of version 0.4.7 --- Changes | 5 +++++ bin/tailt | 4 ++-- lib/Tail/Tool.pm | 4 ++-- lib/Tail/Tool/Config.pod | 2 +- 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 ++-- 15 files changed, 32 insertions(+), 27 deletions(-) diff --git a/Changes b/Changes index 6226f09..fca12b6 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for Tail-Tool +0.4.7 2017-04-10 + Updating for release of version 0.4.7 + Improving on file specification documentation (Ivan Wills) + Added supporting vim style scp urls for remote files (Ivan Wills) + 0.4.6 2017-01-22 Updating for release of version 0.4.6 Updated date (Ivan Wills) diff --git a/bin/tailt b/bin/tailt index f0ee93b..edfc8e4 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to tailt version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool.pm b/lib/Tail/Tool.pm index 3e0f656..f8723a5 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Config.pod b/lib/Tail/Tool/Config.pod index 6a5edcc..ccc6eed 100644 --- a/lib/Tail/Tool/Config.pod +++ b/lib/Tail/Tool/Config.pod @@ -4,7 +4,7 @@ Tail::Tool::Config - Description of the configuration of Tail::Tool =head1 VERSION -This documentation refers to Tail::Tool::Config version 0.4.6 +This documentation refers to Tail::Tool::Config version 0.4.7 =head1 DESCRIPTION diff --git a/lib/Tail/Tool/File.pm b/lib/Tail/Tool/File.pm index baeaa8b..c329c29 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.6'); +our $VERSION = version->new('0.4.7'); has name => ( is => 'rw', @@ -281,7 +281,7 @@ Tail::Tool::File - Looks after individual files =head1 VERSION -This documentation refers to Tail::Tool::File version 0.4.6. +This documentation refers to Tail::Tool::File version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/GroupLines.pm b/lib/Tail/Tool/Plugin/GroupLines.pm index 29af185..1e2e99e 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Plugin::GroupLines version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Highlight.pm b/lib/Tail/Tool/Plugin/Highlight.pm index b2b9eb2..825f84d 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Plugin::Highlight version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Ignore.pm b/lib/Tail/Tool/Plugin/Ignore.pm index 2bb3b79..50f951a 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Plugin::Ignore version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Match.pm b/lib/Tail/Tool/Plugin/Match.pm index f1a0242..48340b6 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Plugin::Match version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Replace.pm b/lib/Tail/Tool/Plugin/Replace.pm index a44e17f..58bb98a 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Plugin::Replace version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Plugin/Spacing.pm b/lib/Tail/Tool/Plugin/Spacing.pm index a1c25c2..471bf80 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Plugin::Spacing version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/PostProcess.pm b/lib/Tail/Tool/PostProcess.pm index 5c6be46..4196735 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::PostProcess version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/PreProcess.pm b/lib/Tail/Tool/PreProcess.pm index 8fc07e4..fcbcab8 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::PreProcess version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/Regex.pm b/lib/Tail/Tool/Regex.pm index 765d946..021a5fd 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::Regex version 0.4.7. =head1 SYNOPSIS diff --git a/lib/Tail/Tool/RegexList.pm b/lib/Tail/Tool/RegexList.pm index 21d97ca..c264b0d 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.6'); +our $VERSION = version->new('0.4.7'); 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.6. +This documentation refers to Tail::Tool::RegexList version 0.4.7. =head1 SYNOPSIS