Skip to content

Commit

Permalink
Updating for release of version 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanwills-optus committed Apr 10, 2017
1 parent 7864d5b commit 79b4e99
Show file tree
Hide file tree
Showing 15 changed files with 32 additions and 27 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions bin/tailt
Original file line number Diff line number Diff line change
Expand Up @@ -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 = (
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Tail/Tool/Config.pod
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/File.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Plugin/GroupLines.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Plugin/Highlight.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Plugin/Ignore.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down Expand Up @@ -44,7 +44,7 @@ Tail::Tool::Plugin::Ignore - <One-line description of module's purpose>
=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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Plugin/Match.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Plugin/Replace.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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) = @_;
Expand Down Expand Up @@ -54,7 +54,7 @@ Tail::Tool::Plugin::Replace - <One-line description of module's purpose>
=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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Plugin/Spacing.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/PostProcess.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/PreProcess.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/Regex.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lib/Tail/Tool/RegexList.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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]';
Expand Down Expand Up @@ -107,7 +107,7 @@ Tail::Tool::RegexList - <One-line description of module's purpose>
=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
Expand Down

0 comments on commit 79b4e99

Please sign in to comment.