fix OS check, bump version, and note it

This commit is contained in:
Zane C. B-H 2021-02-08 23:05:11 -06:00
parent 84b13dba51
commit 37b53bf0d1
3 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,8 @@
Revision history for Net-Connection-ncnetstat
0.6.1 2021-02-08/20:00
- Accidentally inverted the OS check for FreeBSD in Makefile.PL.
0.6.0 2021-02-08/08:00
- Now uses sockstat on FreeBSD.
- Make --pct, -C, --Cl, and -W XORable via $ENV

View File

@ -30,7 +30,7 @@ my %WriteMakefileArgs = (
clean => { FILES => 'Net-Connection-ncnetstat-*' },
);
if ( $^O !~ /freebsd/ ) {
if ( $^O =~ /freebsd/ ) {
$WriteMakefileArgs{PREREQ_PM}{'Net::Connection::FreeBSD_sockstat'} = '0.0.1';
}
else {

View File

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