note various changes to 0.3.0, bump version, assorted doc cleanup

This commit is contained in:
Zane C. B-H 2019-08-09 07:46:24 -05:00
parent 724476cd0b
commit f6103c5bd0
5 changed files with 21 additions and 3 deletions

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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" );