misc updates

This commit is contained in:
Zane C. B-H 2021-02-19 07:41:32 -06:00
parent f3089ada01
commit 680b4cbe62
4 changed files with 13 additions and 9 deletions

View File

@ -1,5 +1,9 @@
Revision history for Net-Connection-ncnetstat
0.7.1 2021-02-19/06:30
- Bump the min version of Text::ANSITable required to 0.601. Thanks SREZIC / #134375.
- Fix some typos in bin/ncnetstat docs. Thanks RSAVAGE / #134382.
0.7.0 2021-02-19/06:30
- Revert to lsof on FreeBSD given formatting problems with
sockstat on FreeBSD with long IPv6 addresses.

View File

@ -19,10 +19,10 @@ my %WriteMakefileArgs = (
},
PREREQ_PM => {
'Net::Connection' => '0.2.0',
'Net::Connection::Match' => '0.4.0',
'Net::Connection::Match' => '0.5.0',
'Net::Connection::Sort' => '0.0.1',
'Term::ANSIColor' => '4.06',
'Text::ANSITable' => '0.501',
'Text::ANSITable' => '0.601',
'Getopt::Long' => '0.0.0',
'Data::Unixish::Apply' => '1.570',
},

View File

@ -6,7 +6,7 @@ use Getopt::Long;
use Net::Connection::ncnetstat;
sub version{
print "ncnetstat v. 0.3.0\n";
print "ncnetstat v. 0.3.1\n";
}
sub help{
@ -941,19 +941,19 @@ Set to either 0 or 1, boolean, for setting the default.
=head1 EXAMPLES
ncnestat -s established,time_wait
ncnetstat -s established,time_wait
Return a list of connection that are in the established or time_wait state.
ncnestat -c ::/0
ncnetstat -c ::/0
Return a list of all IPv6 addresses.
ncnestat -c ::1/128,127.0.0.1/32
ncnetstat -c ::1/128,127.0.0.1/32
Return all connections to localhost.
ncnestat -c 192.168.15.2/32 -l
ncnetstat -c 192.168.15.2/32 -l
Display all connections listening explicitly on 192.168.15.2.

View File

@ -21,11 +21,11 @@ Net::Connection::ncnetstat - The backend for ncnetstat, the colorized and enhanc
=head1 VERSION
Version 0.7.0
Version 0.7.1
=cut
our $VERSION = '0.7.0';
our $VERSION = '0.7.1';
=head1 SYNOPSIS