diff --git a/Net-Connection-Match/Changes b/Net-Connection-Match/Changes index 30a5082..3115ac6 100644 --- a/Net-Connection-Match/Changes +++ b/Net-Connection-Match/Changes @@ -1,5 +1,9 @@ Revision history for Net-Connection-Match +0.3.0 2019-08-09/07:40 + - Add a missing depend for Error::Helper. + - Add support for regexp command searches. + 0.2.0 2019-08-06/05:30 - Misc. POD fixes. - Add RegexPTR support. diff --git a/Net-Connection-Match/MANIFEST b/Net-Connection-Match/MANIFEST index 413dfda..87ac2c0 100644 --- a/Net-Connection-Match/MANIFEST +++ b/Net-Connection-Match/MANIFEST @@ -1,6 +1,7 @@ Changes lib/Net/Connection/Match.pm lib/Net/Connection/Match/CIDR.pm +lib/Net/Connection/Match/Command.pm lib/Net/Connection/Match/Ports.pm lib/Net/Connection/Match/Protos.pm lib/Net/Connection/Match/PTR.pm diff --git a/Net-Connection-Match/lib/Net/Connection/Match.pm b/Net-Connection-Match/lib/Net/Connection/Match.pm index 9ef1c68..db0ddfa 100644 --- a/Net-Connection-Match/lib/Net/Connection/Match.pm +++ b/Net-Connection-Match/lib/Net/Connection/Match.pm @@ -11,11 +11,11 @@ Net::Connection::Match - Runs a stack of checks to match Net::Connection objects =head1 VERSION -Version 0.2.0 +Version 0.3.0 =cut -our $VERSION = '0.2.0'; +our $VERSION = '0.3.0'; =head1 SYNOPSIS diff --git a/Net-Connection-Match/lib/Net/Connection/Match/Command.pm b/Net-Connection-Match/lib/Net/Connection/Match/Command.pm index afda91d..8f4784e 100644 --- a/Net-Connection-Match/lib/Net/Connection/Match/Command.pm +++ b/Net-Connection-Match/lib/Net/Connection/Match/Command.pm @@ -7,7 +7,7 @@ use Proc::ProcessTable; =head1 NAME -Net::Connection::Match::Command - Check if the process command PID matches fix regexp for a Net::Connection object. +Net::Connection::Match::Command - Check if the process command matches fix regexp for a Net::Connection object. =head1 VERSION diff --git a/Net-Connection-Match/t/10-load.t b/Net-Connection-Match/t/10-load.t new file mode 100644 index 0000000..8ebb662 --- /dev/null +++ b/Net-Connection-Match/t/10-load.t @@ -0,0 +1,13 @@ +#!perl -T +use 5.006; +use strict; +use warnings; +use Test::More; + +plan tests => 1; + +BEGIN { + use_ok( 'Net::Connection::Match::Command' ) || print "Bail out!\n"; +} + +diag( "Testing Net::Connection::Match::Command $Net::Connection::Match::Command::VERSION, Perl $], $^X" );